/* global module */ const env = { browser: true, es6: true, 'cypress/globals': true, } const globals = { Atomics: 'readonly', SharedArrayBuffer: 'readonly', } module.exports = { ignorePatterns: ['node_modules', 'plugin-server'], env, settings: { react: { version: 'detect', }, 'import/resolver': { node: { paths: ['eslint-rules'], // Add the directory containing your custom rules extensions: ['.js', '.jsx', '.ts', '.tsx'], // Ensure ESLint resolves both JS and TS files }, }, }, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended', 'plugin:eslint-comments/recommended', 'plugin:storybook/recommended', 'prettier', 'plugin:compat/recommended', ], globals, parser: '@typescript-eslint/parser', parserOptions: { ecmaFeatures: { jsx: true, }, ecmaVersion: 2018, sourceType: 'module', }, plugins: ['prettier', 'react', 'cypress', '@typescript-eslint', 'no-only-tests', 'jest', 'compat', 'posthog'], rules: { 'no-console': ['error', { allow: ['warn', 'error'] }], 'no-debugger': 'error', 'no-only-tests/no-only-tests': 'error', 'react/prop-types': [0], 'react/react-in-jsx-scope': [0], 'react/no-unescaped-entities': [0], 'react/jsx-no-target-blank': [0], 'react/self-closing-comp': [ 'error', { component: true, html: true, }, ], 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': [ 'error', { ignoreRestSiblings: true, }, ], '@typescript-eslint/prefer-ts-expect-error': 'error', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/no-inferrable-types': 'off', '@typescript-eslint/ban-ts-comment': 'off', '@typescript-eslint/no-non-null-assertion': 'error', curly: 'error', 'no-restricted-imports': [ 'error', { paths: [ { name: 'dayjs', message: 'Do not directly import dayjs. Only import the dayjs exported from lib/dayjs.', }, ], }, ], 'react/forbid-dom-props': [ 1, { forbid: [ { propName: 'style', message: 'style should be avoided in favor of utility CSS classes - see https://storybook.posthog.net/?path=/docs/lemon-ui-utilities--overview', }, ], }, ], 'posthog/warn-elements': [ 1, { forbid: [ { element: 'Row', message: 'use flex utility classes instead, e.g. could be
', }, { element: 'Col', message: 'use flex utility classes instead - most of the time can simply be a plain
', }, { element: 'Space', message: 'use flex or space utility classes instead', }, { element: 'Divider', message: 'use instead', }, { element: 'Card', message: 'use utility classes instead', }, { element: 'Button', message: 'use instead', }, { element: 'Input', message: 'use instead', }, { element: 'Skeleton', message: 'use instead', }, { element: 'Modal', message: 'use or ` instead', }, { element: 'Select', message: 'use instead', }, { element: 'LemonButtonWithDropdown', message: 'use with a child instead', }, ], }, ], 'react/forbid-elements': [ 2, { forbid: [ { element: 'Layout', message: 'use utility classes instead', }, { element: 'Tabs', message: 'use instead', }, { element: 'Spin', message: 'use Spinner instead', }, { element: 'Badge', message: 'use LemonBadge instead', }, { element: 'Collapse', message: 'use instead', }, { element: 'MonacoEditor', message: 'use instead', }, { element: 'Typography', message: 'use utility classes instead', }, { element: 'Input.TextArea', message: 'use instead', }, { element: 'ReactMarkdown', message: 'use instead', }, { element: 'a', message: 'use instead', }, ], }, ], 'no-constant-condition': 0, 'no-prototype-builtins': 0, 'no-irregular-whitespace': 0, }, overrides: [ { files: ['**/test/**/*', '**/*.test.*'], env: { ...env, node: true, 'jest/globals': true, }, globals: { ...globals, given: 'readonly', }, }, { // disable these rules for files generated by kea-typegen files: ['*Type.ts', '*Type.tsx'], rules: { '@typescript-eslint/no-explicit-any': ['off'], '@typescript-eslint/ban-types': ['off'], }, }, { // enable the rule specifically for TypeScript files files: ['*.ts', '*.tsx'], rules: { '@typescript-eslint/no-explicit-any': ['off'], '@typescript-eslint/explicit-function-return-type': [ 'error', { allowExpressions: true, }, ], '@typescript-eslint/explicit-module-boundary-types': [ 'error', { allowArgumentsExplicitlyTypedAsAny: true, }, ], }, }, { files: ['*.js'], rules: { '@typescript-eslint/no-var-requires': 'off', }, }, { files: 'eslint-rules/**/*', extends: ['eslint:recommended'], rules: { '@typescript-eslint/no-var-requires': 'off', }, env: { node: true, }, }, ], reportUnusedDisableDirectives: true, }