加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
罗老魔 提交于 2021-01-13 20:34 . feat: 添加好友
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: ['airbnb-base', 'plugin:@typescript-eslint/recommended'],
plugins: ['import', '@typescript-eslint'],
env: {
es6: true,
node: true,
},
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
settings: {
'import/resolver': {
alias: {
extensions: ['.ts', '.js'],
},
},
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
mjs: 'never',
ts: 'never',
},
],
'class-methods-use-this': 'off',
'no-console': ['error', { allow: ['warn'] }],
'max-len': ['error', { code: 150 }],
'no-mixed-operators': 'off',
camelcase: 'off',
'consistent-return': 'off',
'object-curly-newline': 'off',
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化