mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-19 05:39:50 -04:00
* speed up pre req tests * remove timeout and move loop * fix warning * fixed all warnings * fix warnings * fix all lint warnings * fix more warnings
178 lines
6.6 KiB
JavaScript
178 lines
6.6 KiB
JavaScript
import eslint from '@eslint/js';
|
|
import eslintConfigPrettier from 'eslint-config-prettier/flat';
|
|
import playwright from 'eslint-plugin-playwright';
|
|
import reactPlugin from 'eslint-plugin-react';
|
|
import reactHooksPlugin from 'eslint-plugin-react-hooks';
|
|
import simpleImportSortPlugin from 'eslint-plugin-simple-import-sort';
|
|
import eslintPluginUnicorn from 'eslint-plugin-unicorn';
|
|
import globals from 'globals';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
tseslint.configs.strict,
|
|
tseslint.configs.stylistic,
|
|
{
|
|
languageOptions: {
|
|
globals: globals.builtin,
|
|
},
|
|
plugins: {
|
|
unicorn: eslintPluginUnicorn,
|
|
},
|
|
rules: {
|
|
'unicorn/error-message': 'error',
|
|
'unicorn/new-for-builtins': 'error',
|
|
'unicorn/no-abusive-eslint-disable': 'error',
|
|
'unicorn/no-for-loop': 'error',
|
|
'unicorn/no-invalid-remove-event-listener': 'error',
|
|
'unicorn/no-new-buffer': 'error',
|
|
'unicorn/no-static-only-class': 'error',
|
|
'unicorn/no-thenable': 'error',
|
|
'unicorn/no-typeof-undefined': 'error',
|
|
'unicorn/no-unnecessary-polyfills': 'error',
|
|
'unicorn/no-unnecessary-slice-end': 'error',
|
|
'unicorn/no-useless-spread': 'error',
|
|
'unicorn/prefer-array-flat-map': 'error',
|
|
'unicorn/prefer-array-flat': 'error',
|
|
'unicorn/prefer-array-index-of': 'error',
|
|
'unicorn/prefer-includes': 'error',
|
|
'unicorn/prefer-node-protocol': 'error',
|
|
'unicorn/prefer-object-from-entries': 'error',
|
|
'unicorn/prefer-string-slice': 'error',
|
|
'unicorn/prefer-string-starts-ends-with': 'error',
|
|
'unicorn/relative-url-style': 'error',
|
|
'unicorn/switch-case-braces': 'error',
|
|
'unicorn/throw-new-error': 'error',
|
|
// 'unicorn/custom-error-definition': 'error', //TODO: Enable this rule
|
|
// 'unicorn/expiring-todo-comments': 'error', //TODO: Enable this rule
|
|
// 'unicorn/explicit-length-check': 'error', //TODO: Enable this rule
|
|
// 'unicorn/no-negated-condition': 'error', //TODO: Enable this rule
|
|
// 'unicorn/no-null': 'error', // TODO: Enable this rule
|
|
// 'unicorn/prefer-add-event-listener': 'error', //TODO: Enable this rule
|
|
},
|
|
},
|
|
{
|
|
files: ['packages/insomnia-smoke-test/tests/**/*.ts'],
|
|
plugins: { playwright: playwright },
|
|
rules: {
|
|
...playwright.configs['flat/recommended'].rules,
|
|
'playwright/expect-expect': 'off',
|
|
'playwright/require-soft-assertions': 'error',
|
|
'playwright/prefer-native-locators': 'error',
|
|
'playwright/prefer-to-be': 'error',
|
|
'playwright/prefer-to-contain': 'error',
|
|
'playwright/no-wait-for-timeout': 'error',
|
|
},
|
|
},
|
|
{
|
|
files: ['packages/insomnia/src/**/*.{ts,tsx}'],
|
|
plugins: { 'react-hooks': reactHooksPlugin },
|
|
rules: {
|
|
'react-hooks/exhaustive-deps': [
|
|
'error',
|
|
{
|
|
// From react-use https://github.com/streamich/react-use/issues/1703#issuecomment-770972824
|
|
additionalHooks:
|
|
'^use(Async|AsyncFn|AsyncRetry|Debounce|UpdateEffect|IsomorphicLayoutEffect|DeepCompareEffect|ShallowCompareEffect)$',
|
|
},
|
|
],
|
|
'react-hooks/rules-of-hooks': 'error',
|
|
},
|
|
},
|
|
{
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
plugins: {
|
|
'react': reactPlugin,
|
|
'simple-import-sort': simpleImportSortPlugin,
|
|
},
|
|
rules: {
|
|
'default-case': 'error',
|
|
'default-case-last': 'error',
|
|
'eol-last': ['error', 'always'],
|
|
'eqeqeq': ['error', 'smart'],
|
|
'no-async-promise-executor': 'off',
|
|
'no-else-return': 'error',
|
|
'no-empty': ['error', { allowEmptyCatch: true }],
|
|
'no-var': 'error',
|
|
'no-trailing-spaces': 'error',
|
|
'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 0 }],
|
|
'no-inner-declarations': 'off',
|
|
'no-useless-escape': 'off', // TODO: Enable this rule
|
|
'object-curly-spacing': ['error', 'always'],
|
|
'space-before-function-paren': ['error', { anonymous: 'ignore', named: 'ignore', asyncArrow: 'always' }],
|
|
'space-unary-ops': 'error',
|
|
'react/no-unescaped-entities': 'off', // TODO: Enable this rule
|
|
'react/jsx-first-prop-new-line': ['error', 'multiline'],
|
|
'react/jsx-max-props-per-line': ['error', { maximum: 1, when: 'multiline' }],
|
|
'react/jsx-uses-react': 'error',
|
|
'react/jsx-uses-vars': 'error',
|
|
'react/jsx-indent-props': ['error', 2],
|
|
'react/prop-types': 'off',
|
|
'react/function-component-definition': [
|
|
'error',
|
|
{
|
|
namedComponents: 'arrow-function',
|
|
unnamedComponents: 'arrow-function',
|
|
},
|
|
],
|
|
'react/jsx-closing-bracket-location': ['error', 'line-aligned'],
|
|
'react/prefer-stateless-function': 'error',
|
|
'react/jsx-key': ['error', { checkFragmentShorthand: true }],
|
|
'react/no-array-index-key': 'error',
|
|
'react/self-closing-comp': 'error',
|
|
|
|
'@typescript-eslint/array-type': ['error', { default: 'array', readonly: 'array' }],
|
|
'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
|
|
'@typescript-eslint/consistent-type-imports': 'error',
|
|
'@typescript-eslint/no-empty-interface': ['error', { allowSingleExtends: true }],
|
|
'@typescript-eslint/no-empty-object-type': 'off', // TODO: Enable this rule
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-namespace': ['error', { allowDeclarations: true }],
|
|
'@typescript-eslint/no-redeclare': 'error',
|
|
'@typescript-eslint/no-require-imports': 'off',
|
|
'@typescript-eslint/no-unused-expressions': 'off', // TODO: Enable this rule
|
|
'@typescript-eslint/no-unused-vars': 'off', // TODO: Enable this rule
|
|
|
|
'simple-import-sort/imports': 'error',
|
|
'@typescript-eslint/no-use-before-define': 'off', // TODO: Enable this rule
|
|
'@typescript-eslint/no-explicit-any': 'off', // TODO: Enable this rule
|
|
'@typescript-eslint/no-dynamic-delete': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/no-invalid-void-type': 'off',
|
|
},
|
|
},
|
|
eslintConfigPrettier,
|
|
{
|
|
ignores: [
|
|
'*.md',
|
|
'**/__fixtures__/*',
|
|
'**/__snapshots__/*',
|
|
'**/.cache/*',
|
|
'**/.github/*',
|
|
'**/.idea/*',
|
|
'**/*.config.js',
|
|
'**/*.d.ts',
|
|
'**/*.min.js',
|
|
'**/*.js.map',
|
|
'**/bin/*',
|
|
'**/build/*',
|
|
'**/coverage/*',
|
|
'**/customSign.js',
|
|
'**/dist/*',
|
|
'**/docker/*',
|
|
'**/electron/index.js',
|
|
'**/fixtures',
|
|
'**/node_modules/*',
|
|
'**/svgr',
|
|
'**/traces/*',
|
|
'**/verify-pkg.js',
|
|
'**/__mocks__/*',
|
|
'**/.react-router/*',
|
|
],
|
|
},
|
|
);
|