mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-13 21:51:03 +00:00
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
webextensions: true,
|
|
},
|
|
// parser: "vue-eslint-parser",
|
|
// parserOptions: {
|
|
// "parser": "babel-eslint",
|
|
// "ecmaVersion": 2020,
|
|
// ecmaFeatures: {
|
|
// legacyDecorators: true
|
|
// }
|
|
// },
|
|
parserOptions: {
|
|
parser: "@typescript-eslint/parser"
|
|
},
|
|
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",
|
|
"prettier/prettier": "off",
|
|
"no-empty": "off",
|
|
"prefer-const": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"no-undef": "off",
|
|
"no-debugger": "off",
|
|
"no-unreachable": "off",
|
|
"@typescript-eslint/no-inferrable-types": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"@typescript-eslint/no-empty-function": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
}
|
|
};
|