加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1023 Bytes
一键复制 编辑 原始数据 按行查看 历史
RHQYZ 提交于 2022-01-26 22:55 . build: 使用 pnpm 替代 npm
module.exports = {
env: {
es6: true,
browser: true,
node: true,
commonjs: true,
amd: true
},
extends: ['eslint:recommended', 'plugin:prettier/recommended', 'plugin:mocha/recommended'],
overrides: [
{
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
env: {
mocha: true
}
}
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2015,
parser: '@typescript-eslint/parser',
sourceType: 'module'
},
plugins: ['@typescript-eslint', 'prettier', 'mocha'],
rules: {
'indent': ['error', 4, { SwitchCase: 1 }],
'linebreak-style': ['warn', 'windows'],
'max-len': ['warn', 160],
'no-console': 'off',
'no-extra-boolean-cast': 'off',
'prettier/prettier': ['warn', { trailingComma: 'none' }],
'quotes': ['error', 'single'],
'semi': ['error', 'always']
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化