2021-12-28 07:01:39 +00:00
|
|
|
module.exports = {
|
2021-12-28 07:12:59 +00:00
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true,
|
|
|
|
},
|
|
|
|
"extends": ["@nuxtjs/eslint-config-typescript", "plugin:nuxt/recommended", "prettier"],
|
|
|
|
"plugins": [],
|
|
|
|
"rules": {
|
|
|
|
"quote-props": ["error", "always"],
|
|
|
|
"no-unused-vars": ["off"],
|
|
|
|
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
|
2021-12-28 07:01:39 +00:00
|
|
|
},
|
|
|
|
};
|