mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
27 lines
515 B
Plaintext
27 lines
515 B
Plaintext
{
|
|
"globals": {
|
|
"NodeJS": true
|
|
},
|
|
"plugins": ["jsdoc"],
|
|
"extends": [
|
|
"plugin:jsdoc/recommended",
|
|
"@nuxtjs/eslint-config-typescript"
|
|
],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|