mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 16:24:31 -04:00
17 lines
249 B
JavaScript
17 lines
249 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
env: {
|
||
|
|
browser: true,
|
||
|
|
node: true
|
||
|
|
},
|
||
|
|
extends: [
|
||
|
|
'@nuxtjs/eslint-config-typescript',
|
||
|
|
'plugin:nuxt/recommended',
|
||
|
|
'prettier'
|
||
|
|
],
|
||
|
|
plugins: [
|
||
|
|
],
|
||
|
|
// add your custom rules here
|
||
|
|
rules: {}
|
||
|
|
}
|