Nuxt/.eslintrc

36 lines
671 B
Plaintext
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"globals": {
2021-04-23 20:30:43 +00:00
"NodeJS": true,
"$fetch": true
2021-03-18 14:26:41 +00:00
},
2021-04-15 18:49:29 +00:00
"plugins": ["jsdoc"],
2021-03-18 14:26:41 +00:00
"extends": [
2021-04-15 18:49:29 +00:00
"plugin:jsdoc/recommended",
2021-03-18 14:26:41 +00:00
"@nuxtjs/eslint-config-typescript"
],
"rules": {
"no-console": "off",
2021-04-15 18:49:29 +00:00
"vue/one-component-per-file": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-param": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-param-type": "off"
},
"settings": {
"jsdoc": {
"tagNamePreference": {
"warning": "warning",
"note": "note"
}
}
},
"overrides": [
{
"files": ["*.vue"],
"rules": {
"@typescript-eslint/no-unused-vars": "off"
}
}
]
2021-03-18 14:26:41 +00:00
}