1 Star 0 Fork 67

八爪鱼/ChatGPT-On-CS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
lrhh123 提交于 2024-06-07 23:58 . add: 添加多平台的支持
module.exports = {
extends: 'erb',
plugins: ['@typescript-eslint'],
rules: {
// A temporary hack related to IDE not resolving correct package.json
'import/no-extraneous-dependencies': 'off',
'react/react-in-jsx-scope': 'off',
'react/jsx-filename-extension': 'off',
'import/extensions': 'off',
'import/no-unresolved': 'off',
'import/no-import-module-exports': 'off',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',
'no-unused-vars': 'off',
'react/function-component-definition': 'off',
'react/jsx-curly-brace-presence': 'off',
'react/require-default-props': 'off',
'react/jsx-props-no-spreading': 'off',
'react/destructuring-assignment': 'off',
'import/no-named-as-default': 'off',
'prefer-promise-reject-errors': 'off',
'react/jsx-no-useless-fragment': 'off',
'no-promise-executor-return': 'off',
'import/prefer-default-export': 'off',
'promise/no-promise-in-callback': 'off',
'react/no-array-index-key': 'off',
'class-methods-use-this': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-console': 'off',
'max-classes-per-file': 'off',
'no-continue': 'off',
'no-plusplus': 'off',
'no-underscore-dangle': 'off',
camelcase: 'off',
'no-use-before-define': 'off',
'no-dupe-class-members': 'off',
},
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
},
settings: {
'import/resolver': {
// See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below
node: {},
webpack: {
config: require.resolve('./.erb/configs/webpack.config.eslint.ts'),
},
typescript: {},
},
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/elfbobo_admin_admin/ChatGPT-On-CS.git
[email protected]:elfbobo_admin_admin/ChatGPT-On-CS.git
elfbobo_admin_admin
ChatGPT-On-CS
ChatGPT-On-CS
main

搜索帮助