| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | 
							- /* eslint-disable */
 
- module.exports = {
 
-     env: {
 
-         'jest/globals': true,
 
-         'browser': true,
 
-         'node': true
 
-     },
 
-     settings: {
 
-         react: {
 
-             "version": "detect"
 
-         }
 
-     },
 
-     extends: ["plugin:markdown/recommended"],
 
-     overrides: [
 
-         {
 
-             files: ['*.js', '*.jsx'],
 
-             extends: ['jest-enzyme', 'plugin:react/recommended', 'plugin:import/recommended', 'plugin:import/errors', 'plugin:import/warnings', 'plugin:jsx-a11y/recommended'],
 
-             parser: '@babel/eslint-parser',
 
-             plugins: ['react', 'react-hooks', 'jest', 'import'],
 
-             rules: {
 
-                 // 因为历史原因,现有项目基本全部是4个空格
 
-                 indent: ['error', 4, { 'SwitchCase': 1 }],
 
-                 'comma-spacing': ["error", { "before": false, "after": true }],
 
-                 'no-multi-spaces': ["error", { ignoreEOLComments: true }],
 
-                 'react/display-name': 'off',
 
-                 'react/jsx-indent': ['error', 4],
 
-                 'react/jsx-indent-props': ['error', 4],
 
-                 'react/prefer-stateless-function': ['warn'],
 
-                 'react/no-find-dom-node': ['warn'],
 
-                 'react/prop-types': 'off',
 
-                 'react/prefer-stateless-function': 'off',
 
-                 'operator-linebreak': ['warn', 'after', { 'overrides': { '?': 'before', ':': 'before' } }],
 
-                 'import/no-unresolved': 'off',
 
-                 'semi': ['error', 'always'],
 
-                 'keyword-spacing': ["error", { "before": true, "after": true }],
 
-                 'jsx-a11y/click-events-have-key-events': ['warn'],
 
-                 'jsx-a11y/no-noninteractive-element-interactions': ['warn'],
 
-                 'jsx-a11y/no-autofocus': ['warn'],
 
-                 'object-curly-spacing': ['error', 'always'],
 
-             },
 
-             globals: {
 
-                 "sinon": "readonly",
 
-             },
 
-         },
 
-         {
 
-             files: ['*.ts', '*.tsx'],
 
-             excludedFiles: ['content/**'],
 
-             extends: ['jest-enzyme', 'plugin:@typescript-eslint/recommended', 'plugin:import/typescript', 'plugin:react/recommended', 'plugin:jsx-a11y/recommended'],
 
-             parser: '@typescript-eslint/parser',
 
-             parserOptions: {
 
-                 project: ['./tsconfig.eslint.json'],
 
-             },
 
-             plugins: ['react', 'jest', 'react-hooks', 'import', '@typescript-eslint', 'semi-design'],
 
-             rules: {
 
-                 // 因为历史原因,现有项目基本全部是4个空格
 
-                 indent: 'off',
 
-                 'comma-spacing': ["error", { "before": false, "after": true }],
 
-                 'no-multi-spaces': ["error", { ignoreEOLComments: true }],
 
-                 '@typescript-eslint/indent': ['error', 4],
 
-                 'react/display-name': 'off',
 
-                 'react/jsx-indent': ['error', 4],
 
-                 'react/jsx-indent-props': ['error', 4],
 
-                 'react/prefer-stateless-function': ['warn'],
 
-                 'react/no-find-dom-node': ['warn'],
 
-                 'react/prop-types': 'off',
 
-                 'react-hooks/rules-of-hooks': 'error', 
 
-                 'react-hooks/exhaustive-deps': 'warn',
 
-                 'react/prefer-stateless-function': 'off',
 
-                 '@typescript-eslint/explicit-module-boundary-types': 'off',
 
-                 '@typescript-eslint/explicit-function-return-type': 'off',
 
-                 '@typescript-eslint/no-explicit-any': 'off',
 
-                 '@typescript-eslint/naming-convention': 'off',
 
-                 '@typescript-eslint/ban-ts-comment': 'off',
 
-                 '@typescript-eslint/no-var-requires': 'warn',
 
-                 '@typescript-eslint/no-inferrable-types': 'off',
 
-                 '@typescript-eslint/no-this-alias': 'off',
 
-                  // In scenarios where specific rest props need to be passed, some keys may be taken out first, so set 'no-unused-vars' to off
 
-                 '@typescript-eslint/no-unused-vars': 'off',
 
-                 'import/no-unresolved': 'off',
 
-                 'semi': ['error', 'always'],
 
-                 'keyword-spacing': ["error", { "before": true, "after": true }],
 
-                 'jsx-a11y/click-events-have-key-events': ['warn'],
 
-                 'jsx-a11y/no-noninteractive-element-interactions': ['warn'],
 
-                 'jsx-a11y/no-autofocus': ['warn'],
 
-                 'object-curly-spacing': ['error', 'always'],
 
-                 'semi-design/no-import': 'error'
 
-             }
 
-         },
 
-     ],
 
- };
 
 
  |