加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
eslint.config.js 930 Bytes
一键复制 编辑 原始数据 按行查看 历史
houjinhui 提交于 2023-12-04 10:41 . fix: 优化lint
module.exports = {
root: true,
env: {
node: true
},
files: ["src/**/*.{js,jsx,ts,tsx}"] ,// 指示配置对象应应用于的文件的通配符模式数组。 如果未指定,则配置对象适用于与任何其他配置对象匹配的所有文件。
parser: '@typescript-eslint/parser',
ignores: ["**/*.config.js"], // 排除文件
// 插件
plugins: [
'@typescript-eslint',
'prettier' // 《1》
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
// 'plugin:prettier/recommended', // 将 《1》《2》合在一起写就是这样,也是官方的推荐配置
"prettier" // 《2》
],
rules: {
semi: "error",
"prefer-const": "error",
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'prettier/prettier': 'error' // 《2》
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化