Nuxt/.eslintrc

27 lines
515 B
Plaintext
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"globals": {
"NodeJS": true
},
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"
}
}
2021-03-18 14:26:41 +00:00
}
}