加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 358 Bytes
一键复制 编辑 原始数据 按行查看 历史
linxiuer 提交于 2024-07-09 14:17 . fix!:hotpot
module.exports = {
parser: '@typescript-eslint/parser', // 使用TypeScript解析器
plugins: [
'@typescript-eslint', // 添加TypeScript ESLint插件
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended', // 使用TypeScript的推荐规则
],
rules: {
// 可以在这里添加或修改特定的规则
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化