1 Star 1 Fork 0

we_coder/koa-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
杨波 提交于 2022-07-13 16:57 . 放弃webpack改为使用rollup
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
// parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module',
jsxPragma: 'React',
ecmaFeatures: {
jsx: true
}
},
env: {
browser: true
},
extends: [
'plugin:@typescript-eslint/recommended'
],
plugins: [
'@typescript-eslint'
],
rules: {
'no-tabs': 'off',
indent: ['error', 'tab'],
quotes: ['error', 'single'],
'comma-dangle': 'error',
semi: ['error', 'never'],
'jsx-quotes': ['error', 'prefer-double'],
'comma-spacing': 'error',
'key-spacing': 'error',
'keyword-spacing': 'error',
'arrow-spacing': 'error',
'block-spacing': ['error', 'always'],
'object-curly-spacing': ['error', 'always'],
'switch-colon-spacing': 'error',
'space-before-blocks': 'error',
'space-before-function-paren': 'error',
'spaced-comment': 'error',
'no-trailing-spaces': 'error',
'space-infix-ops': ['error', { int32Hint: false }],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-var-requires': 'off'
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/we_coder/koa-app.git
git@gitee.com:we_coder/koa-app.git
we_coder
koa-app
koa-app
master

搜索帮助