2024-07-25 16:30:40 +00:00
|
|
|
/**
|
|
|
|
* .eslint.js
|
|
|
|
*
|
|
|
|
* ESLint configuration file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true,
|
|
|
|
},
|
|
|
|
extends: [
|
2024-08-03 07:39:04 +00:00
|
|
|
"vuetify",
|
|
|
|
"@vue/eslint-config-typescript",
|
|
|
|
"./.eslintrc-auto-import.json",
|
|
|
|
"plugin:prettier/recommended",
|
2024-07-25 16:30:40 +00:00
|
|
|
],
|
|
|
|
rules: {
|
2024-08-03 07:39:04 +00:00
|
|
|
"vue/multi-word-component-names": "off",
|
2024-07-25 16:30:40 +00:00
|
|
|
},
|
2024-08-03 07:39:04 +00:00
|
|
|
};
|