1 Star 0 Fork 2

ForeverAct/beekeeper-studio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
Day Matchullis 提交于 2023-06-20 23:54 . fix shared lint errors
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",
"@vue/typescript",
"@vue/eslint-config-typescript"
],
"rules": {
"no-console": "off",
"@typescript-eslint/no-unused-vars": "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"
},
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaFeatures": {
"legacyDecorators": true
}
},
"overrides": [
{
"files": [
"apps/**/tests/**/*.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/ForeverAct/beekeeper-studio.git
[email protected]:ForeverAct/beekeeper-studio.git
ForeverAct
beekeeper-studio
beekeeper-studio
master

搜索帮助