加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
Zdde 提交于 2022-01-23 09:56 . feat: init
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended',
// Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
'prettier/@typescript-eslint',
// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
// 此行必须在最后
'plugin:prettier/recommended',
],
env: {
es6: true,
node: true,
},
parserOptions: {
// 支持最新 JavaScript
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
// 如果有不适合的规则,可以在此调整
// ...
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化