加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.json 751 Bytes
一键复制 编辑 原始数据 按行查看 历史
提莫打野迷了路 提交于 2023-09-04 04:27 . feat: 添加渲染器
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"root": true,
"env": {
"es6": true,
"browser": true,
"es2021": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
"rules": {
"prettier/prettier": [
"error",
{
"tabWidth": 2
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化