mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
module.exports = {
|
|
"root": true,
|
|
"env": {
|
|
"node": true,
|
|
// activate “es2020” globals to fix 'BigInt' is not defined
|
|
// https://futurestud.io/tutorials/eslint-how-to-fix-bigint-is-not-defined
|
|
"es2020": true,
|
|
},
|
|
"ignorePatterns": ["node_modules", "dist", "apps/**/tsconfig.json", "*.png", "*.scss"],
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:vue/essential",
|
|
"plugin:vue/strongly-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"no-explicit-any": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"vue/require-prop-types": "off",
|
|
"vue/require-default-prop": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"vue/max-attributes-per-line": "off"
|
|
},
|
|
"parser": "vue-eslint-parser",
|
|
"parserOptions": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"ecmaFeatures": {
|
|
"legacyDecorators": true
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"apps/**/tests/**/*.{j,t}s?(x)"
|
|
],
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|
|
]
|
|
}
|