20 lines
251 B
JavaScript
20 lines
251 B
JavaScript
/**
|
|
* .eslint.js
|
|
*
|
|
* ESLint configuration file.
|
|
*/
|
|
|
|
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'vuetify',
|
|
'./.eslintrc-auto-import.json',
|
|
],
|
|
rules: {
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
}
|