| 'use strict'; |
|
|
| const { |
| es5Paths, |
| esNextPaths, |
| } = require('./scripts/shared/pathsByLanguageVersion'); |
|
|
| const restrictedGlobals = require('confusing-browser-globals'); |
|
|
| const OFF = 0; |
| const WARNING = 1; |
| const ERROR = 2; |
|
|
| module.exports = { |
| extends: ['prettier', 'plugin:jest/recommended'], |
|
|
| |
| root: true, |
|
|
| reportUnusedDisableDirectives: true, |
|
|
| plugins: [ |
| 'babel', |
| 'ft-flow', |
| 'jest', |
| 'es', |
| 'no-for-of-loops', |
| 'no-function-declare-after-return', |
| 'react', |
| 'react-internal', |
| ], |
|
|
| parser: 'hermes-eslint', |
| parserOptions: { |
| ecmaVersion: 9, |
| sourceType: 'script', |
| }, |
|
|
| |
| |
| rules: { |
| 'ft-flow/array-style-complex-type': [OFF, 'verbose'], |
| 'ft-flow/array-style-simple-type': [OFF, 'verbose'], |
| 'ft-flow/boolean-style': ERROR, |
| 'ft-flow/no-dupe-keys': ERROR, |
| 'ft-flow/no-primitive-constructor-types': ERROR, |
| 'ft-flow/no-types-missing-file-annotation': OFF, |
| 'ft-flow/no-unused-expressions': ERROR, |
| |
| |
| 'es/no-optional-chaining': ERROR, |
| 'no-cond-assign': OFF, |
| 'no-constant-condition': OFF, |
| 'no-control-regex': OFF, |
| 'no-debugger': ERROR, |
| 'no-dupe-args': ERROR, |
| 'no-dupe-keys': ERROR, |
| 'no-duplicate-case': WARNING, |
| 'no-empty-character-class': WARNING, |
| 'no-empty': OFF, |
| 'no-ex-assign': WARNING, |
| 'no-extra-boolean-cast': WARNING, |
| 'no-func-assign': ERROR, |
| 'no-invalid-regexp': WARNING, |
| 'no-irregular-whitespace': WARNING, |
| 'no-negated-in-lhs': ERROR, |
| 'no-obj-calls': ERROR, |
| 'no-regex-spaces': WARNING, |
| 'no-sparse-arrays': ERROR, |
| 'no-unreachable': ERROR, |
| 'use-isnan': ERROR, |
| 'valid-jsdoc': OFF, |
| 'block-scoped-var': OFF, |
| complexity: OFF, |
| 'default-case': OFF, |
| 'guard-for-in': OFF, |
| 'no-alert': OFF, |
| 'no-caller': ERROR, |
| 'no-case-declarations': OFF, |
| 'no-div-regex': OFF, |
| 'no-else-return': OFF, |
| 'no-empty-pattern': WARNING, |
| 'no-eq-null': OFF, |
| 'no-eval': ERROR, |
| 'no-extend-native': WARNING, |
| 'no-extra-bind': WARNING, |
| 'no-fallthrough': WARNING, |
| 'no-implicit-coercion': OFF, |
| 'no-implied-eval': ERROR, |
| 'no-invalid-this': OFF, |
| 'no-iterator': OFF, |
| 'no-labels': [ERROR, {allowLoop: true, allowSwitch: true}], |
| 'no-lone-blocks': WARNING, |
| 'no-loop-func': OFF, |
| 'no-magic-numbers': OFF, |
| 'no-multi-str': ERROR, |
| 'no-native-reassign': [ERROR, {exceptions: ['Map', 'Set']}], |
| 'no-new-func': ERROR, |
| 'no-new': WARNING, |
| 'no-new-wrappers': WARNING, |
| 'no-octal-escape': WARNING, |
| 'no-octal': WARNING, |
| 'no-param-reassign': OFF, |
| 'no-process-env': OFF, |
| 'no-proto': ERROR, |
| 'no-redeclare': OFF, |
| 'no-return-assign': OFF, |
| 'no-script-url': ERROR, |
| 'no-self-compare': WARNING, |
| 'no-sequences': WARNING, |
| 'no-throw-literal': ERROR, |
| 'no-useless-call': WARNING, |
| 'no-void': OFF, |
| 'no-warning-comments': OFF, |
| 'no-with': OFF, |
| radix: WARNING, |
| 'vars-on-top': OFF, |
| yoda: OFF, |
| 'init-declarations': OFF, |
| 'no-catch-shadow': ERROR, |
| 'no-delete-var': ERROR, |
| 'no-label-var': WARNING, |
| 'no-shadow-restricted-names': WARNING, |
| 'no-undef-init': OFF, |
| 'no-undef': ERROR, |
| 'no-undefined': OFF, |
| 'callback-return': OFF, |
| 'global-require': OFF, |
| 'handle-callback-err': OFF, |
| 'no-mixed-requires': OFF, |
| 'no-new-require': OFF, |
| 'no-path-concat': OFF, |
| 'no-process-exit': OFF, |
| 'no-restricted-modules': OFF, |
| 'no-sync': OFF, |
| camelcase: [OFF, {properties: 'always'}], |
| 'consistent-this': [OFF, 'self'], |
| 'func-names': OFF, |
| 'func-style': [OFF, 'declaration'], |
| 'id-length': OFF, |
| 'id-match': OFF, |
| 'max-depth': OFF, |
| 'max-nested-callbacks': OFF, |
| 'max-params': OFF, |
| 'max-statements': OFF, |
| 'new-cap': OFF, |
| 'newline-after-var': OFF, |
| 'no-array-constructor': ERROR, |
| 'no-continue': OFF, |
| 'no-inline-comments': OFF, |
| 'no-lonely-if': OFF, |
| 'no-negated-condition': OFF, |
| 'no-nested-ternary': OFF, |
| 'no-new-object': WARNING, |
| 'no-plusplus': OFF, |
| 'no-ternary': OFF, |
| 'no-underscore-dangle': OFF, |
| 'no-unneeded-ternary': WARNING, |
| 'one-var': [WARNING, {initialized: 'never'}], |
| 'operator-assignment': [WARNING, 'always'], |
| 'require-jsdoc': OFF, |
| 'sort-vars': OFF, |
| 'spaced-comment': [ |
| OFF, |
| 'always', |
| {exceptions: ['jshint', 'jslint', 'eslint', 'global']}, |
| ], |
| 'constructor-super': ERROR, |
| 'no-class-assign': WARNING, |
| 'no-const-assign': ERROR, |
| 'no-dupe-class-members': ERROR, |
| 'no-this-before-super': ERROR, |
| 'object-shorthand': OFF, |
| 'prefer-const': OFF, |
| 'prefer-spread': OFF, |
| 'prefer-reflect': OFF, |
| 'prefer-template': OFF, |
| 'require-yield': OFF, |
| 'babel/generator-star-spacing': OFF, |
| 'babel/new-cap': OFF, |
| 'babel/array-bracket-spacing': OFF, |
| 'babel/object-curly-spacing': OFF, |
| 'babel/object-shorthand': OFF, |
| 'babel/arrow-parens': OFF, |
| 'babel/no-await-in-loop': OFF, |
| 'babel/flow-object-type': OFF, |
| 'react/display-name': OFF, |
| 'react/forbid-prop-types': OFF, |
| 'react/jsx-closing-bracket-location': OFF, |
| 'react/jsx-curly-spacing': OFF, |
| 'react/jsx-equals-spacing': WARNING, |
| 'react/jsx-filename-extension': OFF, |
| 'react/jsx-first-prop-new-line': OFF, |
| 'react/jsx-handler-names': OFF, |
| 'react/jsx-indent': OFF, |
| 'react/jsx-indent-props': OFF, |
| 'react/jsx-key': OFF, |
| 'react/jsx-max-props-per-line': OFF, |
| 'react/jsx-no-bind': OFF, |
| 'react/jsx-no-duplicate-props': ERROR, |
| 'react/jsx-no-literals': OFF, |
| 'react/jsx-no-target-blank': OFF, |
| 'react/jsx-pascal-case': OFF, |
| 'react/jsx-sort-props': OFF, |
| 'react/jsx-uses-vars': ERROR, |
| 'react/no-comment-textnodes': OFF, |
| 'react/no-danger': OFF, |
| 'react/no-deprecated': OFF, |
| 'react/no-did-mount-set-state': OFF, |
| 'react/no-did-update-set-state': OFF, |
| 'react/no-direct-mutation-state': OFF, |
| 'react/no-multi-comp': OFF, |
| 'react/no-render-return-value': OFF, |
| 'react/no-set-state': OFF, |
| 'react/no-string-refs': OFF, |
| 'react/no-unknown-property': OFF, |
| 'react/prefer-es6-class': OFF, |
| 'react/prefer-stateless-function': OFF, |
| 'react/prop-types': OFF, |
| 'react/require-extension': OFF, |
| 'react/require-optimization': OFF, |
| 'react/require-render-return': OFF, |
| 'react/sort-comp': OFF, |
| 'react/sort-prop-types': OFF, |
|
|
| 'accessor-pairs': OFF, |
| 'brace-style': [ERROR, '1tbs'], |
| 'consistent-return': OFF, |
| 'dot-location': [ERROR, 'property'], |
| |
| 'dot-notation': [ERROR, {allowPattern: '^(error|warn)$'}], |
| 'eol-last': ERROR, |
| eqeqeq: [ERROR, 'allow-null'], |
| indent: OFF, |
| 'jsx-quotes': [ERROR, 'prefer-double'], |
| 'keyword-spacing': [ERROR, {after: true, before: true}], |
| 'no-bitwise': OFF, |
| 'no-console': OFF, |
| 'no-inner-declarations': [ERROR, 'functions'], |
| 'no-multi-spaces': ERROR, |
| 'no-restricted-globals': [ERROR].concat(restrictedGlobals), |
| 'no-restricted-syntax': [ |
| ERROR, |
| 'WithStatement', |
| { |
| selector: 'MemberExpression[property.name=/^(?:substring|substr)$/]', |
| message: 'Prefer string.slice() over .substring() and .substr().', |
| }, |
| ], |
| 'no-shadow': ERROR, |
| 'no-unused-vars': [ERROR, {args: 'none', ignoreRestSiblings: true}], |
| 'no-use-before-define': OFF, |
| 'no-useless-concat': OFF, |
| quotes: [ERROR, 'single', {avoidEscape: true, allowTemplateLiterals: true}], |
| 'space-before-blocks': ERROR, |
| 'space-before-function-paren': OFF, |
| 'valid-typeof': [ERROR, {requireStringLiterals: true}], |
| |
| 'no-useless-computed-key': OFF, |
|
|
| |
| |
| |
| |
| 'no-var': ERROR, |
| strict: ERROR, |
|
|
| |
| |
| |
| |
| 'max-len': OFF, |
|
|
| |
| |
| 'react/jsx-boolean-value': [ERROR, 'always'], |
| 'react/jsx-no-undef': ERROR, |
| |
| 'react/jsx-sort-prop-types': OFF, |
| 'react/jsx-space-before-closing': ERROR, |
| 'react/jsx-uses-react': ERROR, |
| 'react/no-is-mounted': OFF, |
| |
| 'react/react-in-jsx-scope': ERROR, |
| 'react/self-closing-comp': ERROR, |
| |
| 'react/jsx-wrap-multilines': [ |
| ERROR, |
| {declaration: false, assignment: false}, |
| ], |
|
|
| |
| |
| 'no-for-of-loops/no-for-of-loops': ERROR, |
|
|
| |
| 'no-function-declare-after-return/no-function-declare-after-return': ERROR, |
|
|
| |
| |
| 'react-internal/no-primitive-constructors': ERROR, |
| 'react-internal/safe-string-coercion': [ |
| ERROR, |
| {isProductionUserAppCode: true}, |
| ], |
| 'react-internal/warning-args': ERROR, |
| 'react-internal/no-production-logging': ERROR, |
| }, |
|
|
| overrides: [ |
| { |
| |
| |
| |
| files: ['packages/**/*.js'], |
| rules: { |
| 'react-internal/prod-error-codes': ERROR, |
| }, |
| }, |
| { |
| |
| |
| |
| files: [ |
| 'packages/react-dom/src/test-utils/**/*.js', |
| 'packages/react-devtools-shared/**/*.js', |
| 'packages/react-noop-renderer/**/*.js', |
| 'packages/react-refresh/**/*.js', |
| 'packages/react-server-dom-esm/**/*.js', |
| 'packages/react-server-dom-webpack/**/*.js', |
| 'packages/react-server-dom-turbopack/**/*.js', |
| 'packages/react-server-dom-parcel/**/*.js', |
| 'packages/react-server-dom-fb/**/*.js', |
| 'packages/react-flight-server-fb/**/*.js', |
| 'packages/react-server-dom-unbundled/**/*.js', |
| 'packages/react-test-renderer/**/*.js', |
| 'packages/react-debug-tools/**/*.js', |
| 'packages/react-devtools-extensions/**/*.js', |
| 'packages/react-devtools-facade/**/*.js', |
| 'packages/react-native-renderer/**/*.js', |
| 'packages/eslint-plugin-react-hooks/**/*.js', |
| 'packages/jest-react/**/*.js', |
| 'packages/internal-test-utils/**/*.js', |
| 'packages/**/__tests__/*.js', |
| 'packages/**/npm/*.js', |
| ], |
| rules: { |
| 'react-internal/prod-error-codes': OFF, |
| }, |
| }, |
| { |
| |
| |
| files: es5Paths, |
| parser: 'espree', |
| parserOptions: { |
| ecmaVersion: 5, |
| sourceType: 'script', |
| }, |
| rules: { |
| 'no-var': OFF, |
| strict: ERROR, |
| }, |
| }, |
| { |
| |
| |
| files: esNextPaths, |
| parser: 'hermes-eslint', |
| parserOptions: { |
| ecmaVersion: 8, |
| sourceType: 'module', |
| }, |
| rules: { |
| 'no-var': ERROR, |
| 'prefer-const': ERROR, |
| strict: OFF, |
| }, |
| }, |
| { |
| files: ['**/__tests__/*.js'], |
| rules: { |
| |
| |
| 'jest/consistent-test-it': OFF, |
| |
| 'jest/no-alias-methods': OFF, |
| |
| 'jest/no-conditional-expect': OFF, |
| |
| 'jest/expect-expect': OFF, |
| |
| 'jest/no-standalone-expect': OFF, |
| }, |
| }, |
| { |
| |
| files: [ |
| '**/setupTests.js', |
| '**/setupEnv.js', |
| '**/jest/TestFlags.js', |
| '**/dom-event-testing-library/testHelpers.js', |
| '**/utils/ReactDOMServerIntegrationTestUtils.js', |
| '**/babel/transform-react-version-pragma.js', |
| '**/babel/transform-test-gate-pragma.js', |
| ], |
| rules: { |
| |
| 'jest/no-focused-tests': OFF, |
| |
| 'jest/valid-title': OFF, |
| |
| 'jest/expect-expect': OFF, |
| |
| 'jest/no-disabled-tests': OFF, |
| |
| 'jest/no-export': OFF, |
| |
| 'jest/no-commented-out-tests': OFF, |
| }, |
| }, |
| { |
| files: ['**/jest/TestFlags.js'], |
| rules: { |
| |
| 'jest/no-commented-out-tests': OFF, |
| }, |
| }, |
| { |
| files: [ |
| '**/__tests__/**/*.js', |
| 'scripts/**/*.js', |
| 'packages/*/npm/**/*.js', |
| 'packages/dom-event-testing-library/**/*.js', |
| 'packages/react-devtools*/**/*.js', |
| 'fixtures', |
| 'packages/react-dom/src/test-utils/*.js', |
| ], |
| rules: { |
| 'es/no-optional-chaining': OFF, |
| 'react-internal/no-production-logging': OFF, |
| 'react-internal/warning-args': OFF, |
| 'react-internal/safe-string-coercion': [ |
| ERROR, |
| {isProductionUserAppCode: false}, |
| ], |
| }, |
| }, |
| { |
| files: ['scripts/eslint-rules/*.js'], |
| plugins: ['eslint-plugin'], |
| rules: { |
| 'eslint-plugin/prefer-object-rule': ERROR, |
| 'eslint-plugin/require-meta-fixable': [ |
| ERROR, |
| {catchNoFixerButFixableProperty: true}, |
| ], |
| 'eslint-plugin/require-meta-has-suggestions': ERROR, |
| }, |
| }, |
| { |
| files: ['packages/react-server-dom-webpack/**/*.js'], |
| globals: { |
| __webpack_chunk_load__: 'readonly', |
| __webpack_get_script_filename__: 'readonly', |
| __webpack_require__: 'readonly', |
| }, |
| }, |
| { |
| files: ['packages/react-server-dom-turbopack/**/*.js'], |
| globals: { |
| __turbopack_load_by_url__: 'readonly', |
| __turbopack_require__: 'readonly', |
| }, |
| }, |
| { |
| files: ['packages/react-server-dom-parcel/**/*.js'], |
| globals: { |
| parcelRequire: 'readonly', |
| }, |
| }, |
| { |
| files: ['packages/scheduler/**/*.js'], |
| globals: { |
| TaskController: 'readonly', |
| }, |
| }, |
| { |
| files: [ |
| 'packages/react-devtools-extensions/**/*.js', |
| 'packages/react-devtools-shared/src/devtools/views/**/*.js', |
| 'packages/react-devtools-shared/src/hook.js', |
| 'packages/react-devtools-shared/src/backend/console.js', |
| 'packages/react-devtools-shared/src/backend/fiber/renderer.js', |
| 'packages/react-devtools-shared/src/backend/shared/DevToolsComponentStackFrame.js', |
| 'packages/react-devtools-shared/src/frontend/utils/withPermissionsCheck.js', |
| ], |
| globals: { |
| __IS_CHROME__: 'readonly', |
| __IS_FIREFOX__: 'readonly', |
| __IS_EDGE__: 'readonly', |
| __IS_NATIVE__: 'readonly', |
| __IS_INTERNAL_VERSION__: 'readonly', |
| chrome: 'readonly', |
| }, |
| }, |
| { |
| files: ['packages/react-devtools-shared/**/*.js'], |
| globals: { |
| __IS_INTERNAL_VERSION__: 'readonly', |
| }, |
| }, |
| { |
| files: ['packages/react-devtools-*/**/*.js'], |
| excludedFiles: '**/__tests__/**/*.js', |
| plugins: ['eslint-plugin-react-hooks-published'], |
| rules: { |
| 'react-hooks-published/rules-of-hooks': ERROR, |
| }, |
| }, |
| { |
| files: ['packages/eslint-plugin-react-hooks/src/**/*'], |
| extends: ['plugin:@typescript-eslint/recommended'], |
| parser: '@typescript-eslint/parser', |
| plugins: ['@typescript-eslint', 'eslint-plugin'], |
| rules: { |
| '@typescript-eslint/no-explicit-any': OFF, |
| '@typescript-eslint/no-non-null-assertion': OFF, |
| '@typescript-eslint/array-type': [ERROR, {default: 'generic'}], |
|
|
| 'es/no-optional-chaining': OFF, |
|
|
| 'eslint-plugin/prefer-object-rule': ERROR, |
| 'eslint-plugin/require-meta-fixable': [ |
| ERROR, |
| {catchNoFixerButFixableProperty: true}, |
| ], |
| 'eslint-plugin/require-meta-has-suggestions': ERROR, |
| }, |
| }, |
| ], |
|
|
| env: { |
| browser: true, |
| es6: true, |
| node: true, |
| jest: true, |
| }, |
|
|
| globals: { |
| $Flow$ModuleRef: 'readonly', |
| $FlowFixMe: 'readonly', |
| $Keys: 'readonly', |
| $NonMaybeType: 'readonly', |
| $ReadOnly: 'readonly', |
| $ReadOnlyArray: 'readonly', |
| $ArrayBufferView: 'readonly', |
| $Shape: 'readonly', |
| CallSite: 'readonly', |
| ConsoleTask: 'readonly', |
| Readonly: 'readonly', |
| ReturnType: 'readonly', |
| AggregateError: 'readonly', |
| AnimationFrameID: 'readonly', |
| WeakRef: 'readonly', |
| |
| bigint: 'readonly', |
| BigInt: 'readonly', |
| BigInt64Array: 'readonly', |
| BigUint64Array: 'readonly', |
| CacheType: 'readonly', |
| Class: 'readonly', |
| ClientRect: 'readonly', |
| CopyInspectedElementPath: 'readonly', |
| DOMHighResTimeStamp: 'readonly', |
| EventListener: 'readonly', |
| |
| FormDataEntryValue: 'readonly', |
| Iterable: 'readonly', |
| AsyncIterable: 'readonly', |
| $AsyncIterable: 'readonly', |
| $AsyncIterator: 'readonly', |
| Iterator: 'readonly', |
| AsyncIterator: 'readonly', |
| IntervalID: 'readonly', |
| IteratorResult: 'readonly', |
| JSONValue: 'readonly', |
| JSResourceReference: 'readonly', |
| mixin$Animatable: 'readonly', |
| MouseEventHandler: 'readonly', |
| NavigateEvent: 'readonly', |
| Partial: 'readonly', |
| PerformanceMeasureOptions: 'readonly', |
| PropagationPhases: 'readonly', |
| PropertyDescriptor: 'readonly', |
| PropertyDescriptorMap: 'readonly', |
| Proxy$traps: 'readonly', |
| React$Component: 'readonly', |
| React$Config: 'readonly', |
| React$Context: 'readonly', |
| React$Element: 'readonly', |
| React$ElementConfig: 'readonly', |
| React$ElementProps: 'readonly', |
| React$ElementRef: 'readonly', |
| React$ElementType: 'readonly', |
| React$Key: 'readonly', |
| React$Node: 'readonly', |
| React$Portal: 'readonly', |
| React$Ref: 'readonly', |
| React$RefSetter: 'readonly', |
| ReadableStreamController: 'readonly', |
| ReadableStreamReader: 'readonly', |
| RequestInfo: 'readonly', |
| RequestOptions: 'readonly', |
| Required: 'readonly', |
| StoreAsGlobal: 'readonly', |
| symbol: 'readonly', |
| SyntheticEvent: 'readonly', |
| SyntheticMouseEvent: 'readonly', |
| SyntheticPointerEvent: 'readonly', |
| Thenable: 'readonly', |
| TimeoutID: 'readonly', |
| WheelEventHandler: 'readonly', |
| FinalizationRegistry: 'readonly', |
| Exclude: 'readonly', |
| Omit: 'readonly', |
| Pick: 'readonly', |
| Keyframe: 'readonly', |
| PropertyIndexedKeyframes: 'readonly', |
| KeyframeAnimationOptions: 'readonly', |
| GetAnimationsOptions: 'readonly', |
| ScrollTimeline: 'readonly', |
| EventListenerOptionsOrUseCapture: 'readonly', |
| FocusOptions: 'readonly', |
| OptionalEffectTiming: 'readonly', |
|
|
| __REACT_ROOT_PATH_TEST__: 'readonly', |
| spyOnDev: 'readonly', |
| spyOnDevAndProd: 'readonly', |
| spyOnProd: 'readonly', |
| __DEV__: 'readonly', |
| __EXPERIMENTAL__: 'readonly', |
| __EXTENSION__: 'readonly', |
| __PROFILE__: 'readonly', |
| __TEST__: 'readonly', |
| __VARIANT__: 'readonly', |
| __unmockReact: 'readonly', |
| gate: 'readonly', |
| trustedTypes: 'readonly', |
| IS_REACT_ACT_ENVIRONMENT: 'readonly', |
| AsyncLocalStorage: 'readonly', |
| async_hooks: 'readonly', |
| globalThis: 'readonly', |
| navigation: 'readonly', |
| }, |
| }; |
|
|