mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-21 01:18:44 +00:00
27 lines
533 B
JavaScript
27 lines
533 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
webextensions: true
|
||
|
},
|
||
|
parser: "vue-eslint-parser",
|
||
|
parserOptions: {
|
||
|
"parser": "babel-eslint",
|
||
|
"ecmaVersion": 2020,
|
||
|
ecmaFeatures: {
|
||
|
legacyDecorators: true
|
||
|
}
|
||
|
},
|
||
|
extends: [
|
||
|
"plugin:vue/essential",
|
||
|
"eslint:recommended",
|
||
|
"@vue/typescript/recommended",
|
||
|
"@vue/prettier",
|
||
|
"@vue/prettier/@typescript-eslint"
|
||
|
],
|
||
|
|
||
|
rules: {
|
||
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||
|
"@typescript-eslint/no-unused-vars": "off"
|
||
|
}
|
||
|
};
|