14 Star 43 Fork 26

Data Hu / report-designer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
ohyear1987 提交于 2021-09-07 12:47 . first push project
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module'
},
env: {
es2021: true,
node: true,
browser: false
},
extends: [
/** @see https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#recommended-configs */
'plugin:@typescript-eslint/recommended'
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
plugins: ['@typescript-eslint'],
ignorePatterns: ['node_modules/**', 'dist/**'],
rules: {
/**
* This will make the history of changes in the hit a little cleaner
*/
'comma-dangle': ['warn', 'always-multiline'],
/**
* Just for beauty
*/
quotes: ['warn', 'single'],
semi: 'off',
'comma-dangle': ['error', 'never'],
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['off'],
'vue/require-prop-types': ['off'],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'prefer-const': 'off',
'no-var': 'off'
}
}
JavaScript
1
https://gitee.com/datahu-cn/report-designer.git
git@gitee.com:datahu-cn/report-designer.git
datahu-cn
report-designer
report-designer
master

搜索帮助