303 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			303 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   root: true,
 | |
| 
 | |
|   extends: [
 | |
|     'eslint:recommended',
 | |
|     'plugin:react/recommended',
 | |
|     'plugin:jsx-a11y/recommended',
 | |
|     'plugin:import/recommended',
 | |
|     'plugin:promise/recommended',
 | |
|     'plugin:jsdoc/recommended',
 | |
|   ],
 | |
| 
 | |
|   env: {
 | |
|     browser: true,
 | |
|     node: true,
 | |
|     es6: true,
 | |
|   },
 | |
| 
 | |
|   globals: {
 | |
|     ATTACHMENT_HOST: false,
 | |
|   },
 | |
| 
 | |
|   parser: '@typescript-eslint/parser',
 | |
| 
 | |
|   plugins: [
 | |
|     'react',
 | |
|     'jsx-a11y',
 | |
|     'import',
 | |
|     'promise',
 | |
|     '@typescript-eslint',
 | |
|     'formatjs',
 | |
|   ],
 | |
| 
 | |
|   parserOptions: {
 | |
|     sourceType: 'module',
 | |
|     ecmaFeatures: {
 | |
|       jsx: true,
 | |
|     },
 | |
|     ecmaVersion: 2021,
 | |
|     requireConfigFile: false,
 | |
|     babelOptions: {
 | |
|       configFile: false,
 | |
|       presets: ['@babel/react', '@babel/env'],
 | |
|     },
 | |
|   },
 | |
| 
 | |
|   settings: {
 | |
|     react: {
 | |
|       version: 'detect',
 | |
|     },
 | |
|     'import/ignore': [
 | |
|       'node_modules',
 | |
|       '\\.(css|scss|json)$',
 | |
|     ],
 | |
|     'import/resolver': {
 | |
|       node: {
 | |
|         paths: ['app/javascript'],
 | |
|         extensions: ['.js', '.jsx', '.ts', '.tsx'],
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| 
 | |
|   rules: {
 | |
|     'brace-style': 'warn',
 | |
|     'comma-dangle': ['error', 'always-multiline'],
 | |
|     'comma-spacing': [
 | |
|       'warn',
 | |
|       {
 | |
|         before: false,
 | |
|         after: true,
 | |
|       },
 | |
|     ],
 | |
|     'comma-style': ['warn', 'last'],
 | |
|     'consistent-return': 'error',
 | |
|     'dot-notation': 'error',
 | |
|     eqeqeq: ['error', 'always', { 'null': 'ignore' }],
 | |
|     indent: ['warn', 2],
 | |
|     'jsx-quotes': ['error', 'prefer-single'],
 | |
|     'no-case-declarations': 'off',
 | |
|     'no-catch-shadow': 'error',
 | |
|     'no-console': [
 | |
|       'warn',
 | |
|       {
 | |
|         allow: [
 | |
|           'error',
 | |
|           'warn',
 | |
|         ],
 | |
|       },
 | |
|     ],
 | |
|     'no-empty': 'off',
 | |
|     'no-restricted-properties': [
 | |
|       'error',
 | |
|       { property: 'substring', message: 'Use .slice instead of .substring.' },
 | |
|       { property: 'substr', message: 'Use .slice instead of .substr.' },
 | |
|     ],
 | |
|     'no-self-assign': 'off',
 | |
|     'no-trailing-spaces': 'warn',
 | |
|     'no-unused-expressions': 'error',
 | |
|     'no-unused-vars': 'off',
 | |
|     '@typescript-eslint/no-unused-vars': [
 | |
|       'error',
 | |
|       {
 | |
|         vars: 'all',
 | |
|         args: 'after-used',
 | |
|         ignoreRestSiblings: true,
 | |
|       },
 | |
|     ],
 | |
|     'object-curly-spacing': ['error', 'always'],
 | |
|     'padded-blocks': [
 | |
|       'error',
 | |
|       {
 | |
|         classes: 'always',
 | |
|       },
 | |
|     ],
 | |
|     quotes: ['error', 'single'],
 | |
|     semi: 'error',
 | |
|     'valid-typeof': 'error',
 | |
| 
 | |
|     'react/jsx-filename-extension': ['error', { extensions: ['.jsx', 'tsx'] }],
 | |
|     'react/jsx-boolean-value': 'error',
 | |
|     'react/jsx-closing-bracket-location': ['error', 'line-aligned'],
 | |
|     'react/jsx-curly-spacing': 'error',
 | |
|     'react/display-name': 'off',
 | |
|     'react/jsx-equals-spacing': 'error',
 | |
|     'react/jsx-first-prop-new-line': ['error', 'multiline-multiprop'],
 | |
|     'react/jsx-indent': ['error', 2],
 | |
|     'react/jsx-no-bind': 'error',
 | |
|     'react/jsx-no-target-blank': 'off',
 | |
|     'react/jsx-tag-spacing': 'error',
 | |
|     'react/jsx-wrap-multilines': 'error',
 | |
|     'react/no-deprecated': 'off',
 | |
|     'react/no-unknown-property': 'off',
 | |
|     'react/self-closing-comp': 'error',
 | |
| 
 | |
|     // recommended values found in https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/src/index.js
 | |
|     'jsx-a11y/accessible-emoji': 'warn',
 | |
|     'jsx-a11y/click-events-have-key-events': 'off',
 | |
|     'jsx-a11y/label-has-associated-control': 'off',
 | |
|     'jsx-a11y/media-has-caption': 'off',
 | |
|     'jsx-a11y/no-autofocus': 'off',
 | |
|     // recommended rule is:
 | |
|     // 'jsx-a11y/no-interactive-element-to-noninteractive-role': [
 | |
|     //   'error',
 | |
|     //   {
 | |
|     //     tr: ['none', 'presentation'],
 | |
|     //     canvas: ['img'],
 | |
|     //   },
 | |
|     // ],
 | |
|     'jsx-a11y/no-interactive-element-to-noninteractive-role': 'off',
 | |
|     // recommended rule is:
 | |
|     // 'jsx-a11y/no-noninteractive-element-interactions': [
 | |
|     //   'error',
 | |
|     //   {
 | |
|     //     body: ['onError', 'onLoad'],
 | |
|     //     iframe: ['onError', 'onLoad'],
 | |
|     //     img: ['onError', 'onLoad'],
 | |
|     //   },
 | |
|     // ],
 | |
|     'jsx-a11y/no-noninteractive-element-interactions': [
 | |
|       'warn',
 | |
|       {
 | |
|         handlers: [
 | |
|           'onClick',
 | |
|         ],
 | |
|       },
 | |
|     ],
 | |
|     // recommended rule is:
 | |
|     // 'jsx-a11y/no-noninteractive-tabindex': [
 | |
|     //   'error',
 | |
|     //   {
 | |
|     //     tags: [],
 | |
|     //     roles: ['tabpanel'],
 | |
|     //     allowExpressionValues: true,
 | |
|     //   },
 | |
|     // ],
 | |
|     'jsx-a11y/no-noninteractive-tabindex': 'off',
 | |
|     'jsx-a11y/no-onchange': 'warn',
 | |
|     // recommended is full 'error'
 | |
|     'jsx-a11y/no-static-element-interactions': [
 | |
|       'warn',
 | |
|       {
 | |
|         handlers: [
 | |
|           'onClick',
 | |
|         ],
 | |
|       },
 | |
|     ],
 | |
| 
 | |
|     // See https://github.com/import-js/eslint-plugin-import/blob/main/config/recommended.js
 | |
|     'import/extensions': [
 | |
|       'error',
 | |
|       'always',
 | |
|       {
 | |
|         js: 'never',
 | |
|         jsx: 'never',
 | |
|         ts: 'never',
 | |
|         tsx: 'never',
 | |
|       },
 | |
|     ],
 | |
|     'import/newline-after-import': 'error',
 | |
|     'import/no-extraneous-dependencies': [
 | |
|       'error',
 | |
|       {
 | |
|         devDependencies: [
 | |
|           'config/webpack/**',
 | |
|           'app/javascript/mastodon/performance.js',
 | |
|           'app/javascript/mastodon/test_setup.js',
 | |
|           'app/javascript/**/__tests__/**',
 | |
|         ],
 | |
|       },
 | |
|     ],
 | |
|     'import/no-webpack-loader-syntax': 'error',
 | |
| 
 | |
|     'promise/always-return': 'off',
 | |
|     'promise/catch-or-return': [
 | |
|       'error',
 | |
|       {
 | |
|         allowFinally: true,
 | |
|       },
 | |
|     ],
 | |
|     'promise/no-callback-in-promise': 'off',
 | |
|     'promise/no-nesting': 'off',
 | |
|     'promise/no-promise-in-callback': 'off',
 | |
| 
 | |
|     'formatjs/blocklist-elements': 'error',
 | |
|     'formatjs/enforce-default-message': ['error', 'literal'],
 | |
|     'formatjs/enforce-description': 'off', // description values not currently used
 | |
|     'formatjs/enforce-id': 'off', // Explicit IDs are used in the project
 | |
|     'formatjs/enforce-placeholders': 'off', // Issues in short_number.jsx
 | |
|     'formatjs/enforce-plural-rules': 'error',
 | |
|     'formatjs/no-camel-case': 'off', // disabledAccount is only non-conforming
 | |
|     'formatjs/no-complex-selectors': 'error',
 | |
|     'formatjs/no-emoji': 'error',
 | |
|     'formatjs/no-id': 'off', // IDs are used for translation keys
 | |
|     'formatjs/no-invalid-icu': 'error',
 | |
|     'formatjs/no-literal-string-in-jsx': 'off', // Should be looked at, but mainly flagging punctuation outside of strings
 | |
|     'formatjs/no-multiple-plurals': 'off', // Only used by hashtag.jsx
 | |
|     'formatjs/no-multiple-whitespaces': 'error',
 | |
|     'formatjs/no-offset': 'error',
 | |
|     'formatjs/no-useless-message': 'error',
 | |
|     'formatjs/prefer-formatted-message': 'error',
 | |
|     'formatjs/prefer-pound-in-plural': 'error',
 | |
| 
 | |
|     'jsdoc/check-types': 'off',
 | |
|     'jsdoc/no-undefined-types': 'off',
 | |
|     'jsdoc/require-jsdoc': 'off',
 | |
|     'jsdoc/require-param-description': 'off',
 | |
|     'jsdoc/require-property-description': 'off',
 | |
|     'jsdoc/require-returns-description': 'off',
 | |
|     'jsdoc/require-returns': 'off',
 | |
|   },
 | |
| 
 | |
|   overrides: [
 | |
|     {
 | |
|       files: [
 | |
|         '*.config.js',
 | |
|         '.*rc.js',
 | |
|         'ide-helper.js',
 | |
|       ],
 | |
| 
 | |
|       env: {
 | |
|         commonjs: true,
 | |
|       },
 | |
| 
 | |
|       parserOptions: {
 | |
|         sourceType: 'script',
 | |
|       },
 | |
|     },
 | |
|     {
 | |
|       files: [
 | |
|         '**/*.ts',
 | |
|         '**/*.tsx',
 | |
|       ],
 | |
| 
 | |
|       extends: [
 | |
|         'eslint:recommended',
 | |
|         'plugin:@typescript-eslint/recommended',
 | |
|         'plugin:react/recommended',
 | |
|         'plugin:jsx-a11y/recommended',
 | |
|         'plugin:import/recommended',
 | |
|         'plugin:import/typescript',
 | |
|         'plugin:promise/recommended',
 | |
|         'plugin:jsdoc/recommended',
 | |
|       ],
 | |
| 
 | |
|       rules: {
 | |
|         '@typescript-eslint/no-explicit-any': 'off',
 | |
| 
 | |
|         'jsdoc/require-jsdoc': 'off',
 | |
|       },
 | |
|     },
 | |
|     {
 | |
|       files: [
 | |
|         '**/__tests__/*.js',
 | |
|         '**/__tests__/*.jsx',
 | |
|       ],
 | |
| 
 | |
|       env: {
 | |
|         jest: true,
 | |
|       },
 | |
|     },
 | |
|   ],
 | |
| };
 |