2022-04-03 01:20:53 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
browser: true,
|
2022-04-03 01:20:54 +02:00
|
|
|
node: true,
|
|
|
|
},
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2020,
|
|
|
|
sourceType: "module",
|
|
|
|
parser: "@typescript-eslint/parser",
|
2022-04-03 01:20:53 +02:00
|
|
|
},
|
|
|
|
extends: [
|
2022-04-03 01:20:54 +02:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:nuxt/recommended",
|
|
|
|
"plugin:vue/vue3-recommended",
|
|
|
|
"plugin:prettier/recommended",
|
2022-04-03 01:20:53 +02:00
|
|
|
],
|
2022-04-03 01:20:54 +02:00
|
|
|
plugins: ["@typescript-eslint"],
|
2022-04-03 01:20:53 +02:00
|
|
|
// add your custom rules here
|
2022-04-03 01:20:54 +02:00
|
|
|
rules: {},
|
|
|
|
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ["layouts/*.vue", "pages/**/*.vue"],
|
|
|
|
rules: { "vue/multi-word-component-names": "off" },
|
|
|
|
},
|
|
|
|
],
|
2022-04-03 01:20:53 +02:00
|
|
|
}
|