eslint-config-airbnb-extended 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/base/index.d.ts +9 -9
  2. package/dist/base/index.js +9 -9
  3. package/dist/index.d.ts +1805 -9
  4. package/dist/index.js +13 -3
  5. package/dist/react/index.d.ts +1799 -0
  6. package/dist/react/index.js +15 -0
  7. package/dist/react/recommended.d.ts +2 -0
  8. package/dist/react/recommended.js +19 -0
  9. package/dist/rules/react-a11y.d.ts +117 -0
  10. package/dist/rules/react-a11y.js +255 -0
  11. package/dist/rules/react-hooks.d.ts +19 -0
  12. package/dist/rules/react-hooks.js +57 -0
  13. package/dist/rules/react.d.ts +1664 -0
  14. package/dist/rules/react.js +606 -0
  15. package/package.json +5 -2
  16. package/dist/package.json +0 -86
  17. package/dist/src/base/index.d.ts +0 -2007
  18. package/dist/src/base/index.js +0 -25
  19. package/dist/src/base/recommended.d.ts +0 -1004
  20. package/dist/src/base/recommended.js +0 -33
  21. package/dist/src/index.d.ts +0 -2008
  22. package/dist/src/index.js +0 -10
  23. package/dist/src/rules/best-practices.d.ts +0 -177
  24. package/dist/src/rules/best-practices.js +0 -379
  25. package/dist/src/rules/errors.d.ts +0 -69
  26. package/dist/src/rules/errors.js +0 -151
  27. package/dist/src/rules/es6.d.ts +0 -146
  28. package/dist/src/rules/es6.js +0 -203
  29. package/dist/src/rules/imports.d.ts +0 -165
  30. package/dist/src/rules/imports.js +0 -279
  31. package/dist/src/rules/node.d.ts +0 -90
  32. package/dist/src/rules/node.js +0 -50
  33. package/dist/src/rules/strict.d.ts +0 -7
  34. package/dist/src/rules/strict.js +0 -9
  35. package/dist/src/rules/style.d.ts +0 -320
  36. package/dist/src/rules/style.js +0 -530
  37. package/dist/src/rules/variables.d.ts +0 -35
  38. package/dist/src/rules/variables.js +0 -73
  39. package/dist/src/utils/index.d.ts +0 -1
  40. package/dist/src/utils/index.js +0 -4
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export declare const configs: {
2
2
  base: {
3
- 'flat/best-practices': {
3
+ bestPractices: {
4
4
  name: string;
5
5
  rules: {
6
6
  'accessor-pairs': "off";
@@ -176,7 +176,7 @@ export declare const configs: {
176
176
  yoda: "error";
177
177
  };
178
178
  };
179
- 'flat/errors': {
179
+ errors: {
180
180
  name: string;
181
181
  rules: {
182
182
  'for-direction': "error";
@@ -244,7 +244,7 @@ export declare const configs: {
244
244
  }];
245
245
  };
246
246
  };
247
- 'flat/es6': {
247
+ es6: {
248
248
  name: string;
249
249
  languageOptions: {
250
250
  globals: {
@@ -389,8 +389,8 @@ export declare const configs: {
389
389
  'yield-star-spacing': ["error", string];
390
390
  };
391
391
  };
392
- 'flat/imports': any;
393
- 'flat/node': {
392
+ imports: any;
393
+ node: {
394
394
  name: string;
395
395
  languageOptions: {
396
396
  globals: {
@@ -479,13 +479,13 @@ export declare const configs: {
479
479
  'no-sync': "off";
480
480
  };
481
481
  };
482
- 'flat/strict': {
482
+ strict: {
483
483
  name: string;
484
484
  rules: {
485
485
  strict: ["error", string];
486
486
  };
487
487
  };
488
- 'flat/style': {
488
+ style: {
489
489
  name: string;
490
490
  rules: {
491
491
  'array-bracket-newline': ["off", string];
@@ -804,7 +804,7 @@ export declare const configs: {
804
804
  'wrap-regex': "off";
805
805
  };
806
806
  };
807
- 'flat/variables': {
807
+ variables: {
808
808
  name: string;
809
809
  rules: {
810
810
  'init-declarations': "off";
@@ -838,6 +838,1802 @@ export declare const configs: {
838
838
  }];
839
839
  };
840
840
  };
841
- 'flat/recommended': any[];
841
+ recommended: any[];
842
842
  };
843
+ react: {
844
+ name: string;
845
+ plugins: {
846
+ react: {
847
+ deprecatedRules: Partial<{
848
+ 'boolean-prop-naming': import("eslint").Rule.RuleModule;
849
+ 'button-has-type': import("eslint").Rule.RuleModule;
850
+ 'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
851
+ 'default-props-match-prop-types': import("eslint").Rule.RuleModule;
852
+ 'destructuring-assignment': import("eslint").Rule.RuleModule;
853
+ 'display-name': import("eslint").Rule.RuleModule;
854
+ 'forbid-component-props': import("eslint").Rule.RuleModule;
855
+ 'forbid-dom-props': import("eslint").Rule.RuleModule;
856
+ 'forbid-elements': import("eslint").Rule.RuleModule;
857
+ 'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
858
+ 'forbid-prop-types': import("eslint").Rule.RuleModule;
859
+ 'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
860
+ 'function-component-definition': import("eslint").Rule.RuleModule;
861
+ 'hook-use-state': import("eslint").Rule.RuleModule;
862
+ 'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
863
+ 'jsx-boolean-value': import("eslint").Rule.RuleModule;
864
+ 'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
865
+ 'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
866
+ 'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
867
+ 'jsx-curly-spacing': import("eslint").Rule.RuleModule;
868
+ 'jsx-curly-newline': import("eslint").Rule.RuleModule;
869
+ 'jsx-equals-spacing': import("eslint").Rule.RuleModule;
870
+ 'jsx-filename-extension': import("eslint").Rule.RuleModule;
871
+ 'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
872
+ 'jsx-handler-names': import("eslint").Rule.RuleModule;
873
+ 'jsx-indent': import("eslint").Rule.RuleModule;
874
+ 'jsx-indent-props': import("eslint").Rule.RuleModule;
875
+ 'jsx-key': import("eslint").Rule.RuleModule;
876
+ 'jsx-max-depth': import("eslint").Rule.RuleModule;
877
+ 'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
878
+ 'jsx-newline': import("eslint").Rule.RuleModule;
879
+ 'jsx-no-bind': import("eslint").Rule.RuleModule;
880
+ 'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
881
+ 'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
882
+ 'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
883
+ 'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
884
+ 'jsx-no-literals': import("eslint").Rule.RuleModule;
885
+ 'jsx-no-script-url': import("eslint").Rule.RuleModule;
886
+ 'jsx-no-target-blank': import("eslint").Rule.RuleModule;
887
+ 'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
888
+ 'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
889
+ 'jsx-no-undef': import("eslint").Rule.RuleModule;
890
+ 'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
891
+ 'jsx-pascal-case': import("eslint").Rule.RuleModule;
892
+ 'jsx-fragments': import("eslint").Rule.RuleModule;
893
+ 'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
894
+ 'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
895
+ 'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
896
+ 'jsx-sort-default-props': import("eslint").Rule.RuleModule;
897
+ 'jsx-sort-props': import("eslint").Rule.RuleModule;
898
+ 'jsx-space-before-closing': import("eslint").Rule.RuleModule;
899
+ 'jsx-tag-spacing': import("eslint").Rule.RuleModule;
900
+ 'jsx-uses-react': import("eslint").Rule.RuleModule;
901
+ 'jsx-uses-vars': import("eslint").Rule.RuleModule;
902
+ 'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
903
+ 'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
904
+ 'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
905
+ 'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
906
+ 'no-array-index-key': import("eslint").Rule.RuleModule;
907
+ 'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
908
+ 'no-children-prop': import("eslint").Rule.RuleModule;
909
+ 'no-danger': import("eslint").Rule.RuleModule;
910
+ 'no-danger-with-children': import("eslint").Rule.RuleModule;
911
+ 'no-deprecated': import("eslint").Rule.RuleModule;
912
+ 'no-did-mount-set-state': import("eslint").Rule.RuleModule;
913
+ 'no-did-update-set-state': import("eslint").Rule.RuleModule;
914
+ 'no-direct-mutation-state': import("eslint").Rule.RuleModule;
915
+ 'no-find-dom-node': import("eslint").Rule.RuleModule;
916
+ 'no-is-mounted': import("eslint").Rule.RuleModule;
917
+ 'no-multi-comp': import("eslint").Rule.RuleModule;
918
+ 'no-namespace': import("eslint").Rule.RuleModule;
919
+ 'no-set-state': import("eslint").Rule.RuleModule;
920
+ 'no-string-refs': import("eslint").Rule.RuleModule;
921
+ 'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
922
+ 'no-render-return-value': import("eslint").Rule.RuleModule;
923
+ 'no-this-in-sfc': import("eslint").Rule.RuleModule;
924
+ 'no-typos': import("eslint").Rule.RuleModule;
925
+ 'no-unescaped-entities': import("eslint").Rule.RuleModule;
926
+ 'no-unknown-property': import("eslint").Rule.RuleModule;
927
+ 'no-unsafe': import("eslint").Rule.RuleModule;
928
+ 'no-unstable-nested-components': import("eslint").Rule.RuleModule;
929
+ 'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
930
+ 'no-unused-prop-types': import("eslint").Rule.RuleModule;
931
+ 'no-unused-state': import("eslint").Rule.RuleModule;
932
+ 'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
933
+ 'no-will-update-set-state': import("eslint").Rule.RuleModule;
934
+ 'prefer-es6-class': import("eslint").Rule.RuleModule;
935
+ 'prefer-exact-props': import("eslint").Rule.RuleModule;
936
+ 'prefer-read-only-props': import("eslint").Rule.RuleModule;
937
+ 'prefer-stateless-function': import("eslint").Rule.RuleModule;
938
+ 'prop-types': import("eslint").Rule.RuleModule;
939
+ 'react-in-jsx-scope': import("eslint").Rule.RuleModule;
940
+ 'require-default-props': import("eslint").Rule.RuleModule;
941
+ 'require-optimization': import("eslint").Rule.RuleModule;
942
+ 'require-render-return': import("eslint").Rule.RuleModule;
943
+ 'self-closing-comp': import("eslint").Rule.RuleModule;
944
+ 'sort-comp': import("eslint").Rule.RuleModule;
945
+ 'sort-default-props': import("eslint").Rule.RuleModule;
946
+ 'sort-prop-types': import("eslint").Rule.RuleModule;
947
+ 'state-in-constructor': import("eslint").Rule.RuleModule;
948
+ 'static-property-placement': import("eslint").Rule.RuleModule;
949
+ 'style-prop-object': import("eslint").Rule.RuleModule;
950
+ 'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
951
+ }>;
952
+ rules: {
953
+ 'boolean-prop-naming': import("eslint").Rule.RuleModule;
954
+ 'button-has-type': import("eslint").Rule.RuleModule;
955
+ 'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
956
+ 'default-props-match-prop-types': import("eslint").Rule.RuleModule;
957
+ 'destructuring-assignment': import("eslint").Rule.RuleModule;
958
+ 'display-name': import("eslint").Rule.RuleModule;
959
+ 'forbid-component-props': import("eslint").Rule.RuleModule;
960
+ 'forbid-dom-props': import("eslint").Rule.RuleModule;
961
+ 'forbid-elements': import("eslint").Rule.RuleModule;
962
+ 'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
963
+ 'forbid-prop-types': import("eslint").Rule.RuleModule;
964
+ 'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
965
+ 'function-component-definition': import("eslint").Rule.RuleModule;
966
+ 'hook-use-state': import("eslint").Rule.RuleModule;
967
+ 'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
968
+ 'jsx-boolean-value': import("eslint").Rule.RuleModule;
969
+ 'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
970
+ 'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
971
+ 'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
972
+ 'jsx-curly-spacing': import("eslint").Rule.RuleModule;
973
+ 'jsx-curly-newline': import("eslint").Rule.RuleModule;
974
+ 'jsx-equals-spacing': import("eslint").Rule.RuleModule;
975
+ 'jsx-filename-extension': import("eslint").Rule.RuleModule;
976
+ 'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
977
+ 'jsx-handler-names': import("eslint").Rule.RuleModule;
978
+ 'jsx-indent': import("eslint").Rule.RuleModule;
979
+ 'jsx-indent-props': import("eslint").Rule.RuleModule;
980
+ 'jsx-key': import("eslint").Rule.RuleModule;
981
+ 'jsx-max-depth': import("eslint").Rule.RuleModule;
982
+ 'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
983
+ 'jsx-newline': import("eslint").Rule.RuleModule;
984
+ 'jsx-no-bind': import("eslint").Rule.RuleModule;
985
+ 'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
986
+ 'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
987
+ 'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
988
+ 'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
989
+ 'jsx-no-literals': import("eslint").Rule.RuleModule;
990
+ 'jsx-no-script-url': import("eslint").Rule.RuleModule;
991
+ 'jsx-no-target-blank': import("eslint").Rule.RuleModule;
992
+ 'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
993
+ 'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
994
+ 'jsx-no-undef': import("eslint").Rule.RuleModule;
995
+ 'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
996
+ 'jsx-pascal-case': import("eslint").Rule.RuleModule;
997
+ 'jsx-fragments': import("eslint").Rule.RuleModule;
998
+ 'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
999
+ 'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
1000
+ 'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
1001
+ 'jsx-sort-default-props': import("eslint").Rule.RuleModule;
1002
+ 'jsx-sort-props': import("eslint").Rule.RuleModule;
1003
+ 'jsx-space-before-closing': import("eslint").Rule.RuleModule;
1004
+ 'jsx-tag-spacing': import("eslint").Rule.RuleModule;
1005
+ 'jsx-uses-react': import("eslint").Rule.RuleModule;
1006
+ 'jsx-uses-vars': import("eslint").Rule.RuleModule;
1007
+ 'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
1008
+ 'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
1009
+ 'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
1010
+ 'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
1011
+ 'no-array-index-key': import("eslint").Rule.RuleModule;
1012
+ 'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
1013
+ 'no-children-prop': import("eslint").Rule.RuleModule;
1014
+ 'no-danger': import("eslint").Rule.RuleModule;
1015
+ 'no-danger-with-children': import("eslint").Rule.RuleModule;
1016
+ 'no-deprecated': import("eslint").Rule.RuleModule;
1017
+ 'no-did-mount-set-state': import("eslint").Rule.RuleModule;
1018
+ 'no-did-update-set-state': import("eslint").Rule.RuleModule;
1019
+ 'no-direct-mutation-state': import("eslint").Rule.RuleModule;
1020
+ 'no-find-dom-node': import("eslint").Rule.RuleModule;
1021
+ 'no-is-mounted': import("eslint").Rule.RuleModule;
1022
+ 'no-multi-comp': import("eslint").Rule.RuleModule;
1023
+ 'no-namespace': import("eslint").Rule.RuleModule;
1024
+ 'no-set-state': import("eslint").Rule.RuleModule;
1025
+ 'no-string-refs': import("eslint").Rule.RuleModule;
1026
+ 'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
1027
+ 'no-render-return-value': import("eslint").Rule.RuleModule;
1028
+ 'no-this-in-sfc': import("eslint").Rule.RuleModule;
1029
+ 'no-typos': import("eslint").Rule.RuleModule;
1030
+ 'no-unescaped-entities': import("eslint").Rule.RuleModule;
1031
+ 'no-unknown-property': import("eslint").Rule.RuleModule;
1032
+ 'no-unsafe': import("eslint").Rule.RuleModule;
1033
+ 'no-unstable-nested-components': import("eslint").Rule.RuleModule;
1034
+ 'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
1035
+ 'no-unused-prop-types': import("eslint").Rule.RuleModule;
1036
+ 'no-unused-state': import("eslint").Rule.RuleModule;
1037
+ 'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
1038
+ 'no-will-update-set-state': import("eslint").Rule.RuleModule;
1039
+ 'prefer-es6-class': import("eslint").Rule.RuleModule;
1040
+ 'prefer-exact-props': import("eslint").Rule.RuleModule;
1041
+ 'prefer-read-only-props': import("eslint").Rule.RuleModule;
1042
+ 'prefer-stateless-function': import("eslint").Rule.RuleModule;
1043
+ 'prop-types': import("eslint").Rule.RuleModule;
1044
+ 'react-in-jsx-scope': import("eslint").Rule.RuleModule;
1045
+ 'require-default-props': import("eslint").Rule.RuleModule;
1046
+ 'require-optimization': import("eslint").Rule.RuleModule;
1047
+ 'require-render-return': import("eslint").Rule.RuleModule;
1048
+ 'self-closing-comp': import("eslint").Rule.RuleModule;
1049
+ 'sort-comp': import("eslint").Rule.RuleModule;
1050
+ 'sort-default-props': import("eslint").Rule.RuleModule;
1051
+ 'sort-prop-types': import("eslint").Rule.RuleModule;
1052
+ 'state-in-constructor': import("eslint").Rule.RuleModule;
1053
+ 'static-property-placement': import("eslint").Rule.RuleModule;
1054
+ 'style-prop-object': import("eslint").Rule.RuleModule;
1055
+ 'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
1056
+ };
1057
+ configs: {
1058
+ recommended: {
1059
+ plugins: ["react"];
1060
+ parserOptions: {
1061
+ ecmaFeatures: {
1062
+ jsx: boolean;
1063
+ };
1064
+ };
1065
+ rules: {
1066
+ "react/display-name": 2;
1067
+ "react/jsx-key": 2;
1068
+ "react/jsx-no-comment-textnodes": 2;
1069
+ "react/jsx-no-duplicate-props": 2;
1070
+ "react/jsx-no-target-blank": 2;
1071
+ "react/jsx-no-undef": 2;
1072
+ "react/jsx-uses-react": 2;
1073
+ "react/jsx-uses-vars": 2;
1074
+ "react/no-children-prop": 2;
1075
+ "react/no-danger-with-children": 2;
1076
+ "react/no-deprecated": 2;
1077
+ "react/no-direct-mutation-state": 2;
1078
+ "react/no-find-dom-node": 2;
1079
+ "react/no-is-mounted": 2;
1080
+ "react/no-render-return-value": 2;
1081
+ "react/no-string-refs": 2;
1082
+ "react/no-unescaped-entities": 2;
1083
+ "react/no-unknown-property": 2;
1084
+ "react/no-unsafe": 0;
1085
+ "react/prop-types": 2;
1086
+ "react/react-in-jsx-scope": 2;
1087
+ "react/require-render-return": 2;
1088
+ };
1089
+ };
1090
+ all: {
1091
+ plugins: ["react"];
1092
+ parserOptions: {
1093
+ ecmaFeatures: {
1094
+ jsx: boolean;
1095
+ };
1096
+ };
1097
+ rules: Record<"boolean-prop-naming" | "button-has-type" | "checked-requires-onchange-or-readonly" | "default-props-match-prop-types" | "destructuring-assignment" | "display-name" | "forbid-component-props" | "forbid-dom-props" | "forbid-elements" | "forbid-foreign-prop-types" | "forbid-prop-types" | "prop-types" | "forward-ref-uses-ref" | "function-component-definition" | "hook-use-state" | "iframe-missing-sandbox" | "jsx-boolean-value" | "jsx-child-element-spacing" | "jsx-closing-bracket-location" | "jsx-closing-tag-location" | "jsx-curly-spacing" | "jsx-curly-newline" | "jsx-equals-spacing" | "jsx-filename-extension" | "jsx-first-prop-new-line" | "jsx-handler-names" | "jsx-indent" | "jsx-indent-props" | "jsx-key" | "jsx-max-depth" | "jsx-max-props-per-line" | "jsx-newline" | "jsx-no-bind" | "jsx-no-comment-textnodes" | "jsx-no-constructed-context-values" | "jsx-no-duplicate-props" | "jsx-no-leaked-render" | "jsx-no-literals" | "jsx-no-script-url" | "jsx-no-target-blank" | "jsx-no-useless-fragment" | "jsx-one-expression-per-line" | "jsx-no-undef" | "jsx-curly-brace-presence" | "jsx-pascal-case" | "jsx-fragments" | "jsx-props-no-multi-spaces" | "jsx-props-no-spreading" | "jsx-props-no-spread-multi" | "sort-default-props" | "jsx-sort-default-props" | "jsx-sort-props" | "jsx-tag-spacing" | "jsx-space-before-closing" | "jsx-uses-react" | "jsx-uses-vars" | "jsx-wrap-multilines" | "no-invalid-html-attribute" | "no-access-state-in-setstate" | "no-adjacent-inline-elements" | "no-array-index-key" | "no-arrow-function-lifecycle" | "no-children-prop" | "no-danger" | "no-danger-with-children" | "no-deprecated" | "no-direct-mutation-state" | "no-find-dom-node" | "no-is-mounted" | "no-multi-comp" | "no-namespace" | "no-set-state" | "no-string-refs" | "no-redundant-should-component-update" | "no-render-return-value" | "no-this-in-sfc" | "no-typos" | "no-unescaped-entities" | "no-unknown-property" | "no-unsafe" | "no-unstable-nested-components" | "no-unused-class-component-methods" | "no-unused-prop-types" | "no-unused-state" | "no-object-type-as-default-prop" | "prefer-es6-class" | "prefer-exact-props" | "prefer-read-only-props" | "prefer-stateless-function" | "react-in-jsx-scope" | "require-default-props" | "require-optimization" | "require-render-return" | "self-closing-comp" | "sort-comp" | "sort-prop-types" | "state-in-constructor" | "static-property-placement" | "style-prop-object" | "void-dom-elements-no-children" | "no-did-mount-set-state" | "no-did-update-set-state" | "no-will-update-set-state", 2 | "error">;
1098
+ };
1099
+ 'jsx-runtime': {
1100
+ plugins: ["react"];
1101
+ parserOptions: {
1102
+ ecmaFeatures: {
1103
+ jsx: boolean;
1104
+ };
1105
+ jsxPragma: any;
1106
+ };
1107
+ rules: {
1108
+ "react/react-in-jsx-scope": 0;
1109
+ "react/jsx-uses-react": 0;
1110
+ };
1111
+ };
1112
+ flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
1113
+ } & {
1114
+ flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
1115
+ };
1116
+ };
1117
+ };
1118
+ languageOptions: {
1119
+ parserOptions: {
1120
+ ecmaFeatures: {
1121
+ jsx: true;
1122
+ };
1123
+ };
1124
+ globals: {
1125
+ AbortController: false;
1126
+ AbortSignal: false;
1127
+ AbsoluteOrientationSensor: false;
1128
+ AbstractRange: false;
1129
+ Accelerometer: false;
1130
+ addEventListener: false;
1131
+ ai: false;
1132
+ AI: false;
1133
+ AITextSession: false;
1134
+ alert: false;
1135
+ AnalyserNode: false;
1136
+ Animation: false;
1137
+ AnimationEffect: false;
1138
+ AnimationEvent: false;
1139
+ AnimationPlaybackEvent: false;
1140
+ AnimationTimeline: false;
1141
+ atob: false;
1142
+ Attr: false;
1143
+ Audio: false;
1144
+ AudioBuffer: false;
1145
+ AudioBufferSourceNode: false;
1146
+ AudioContext: false;
1147
+ AudioData: false;
1148
+ AudioDecoder: false;
1149
+ AudioDestinationNode: false;
1150
+ AudioEncoder: false;
1151
+ AudioListener: false;
1152
+ AudioNode: false;
1153
+ AudioParam: false;
1154
+ AudioParamMap: false;
1155
+ AudioProcessingEvent: false;
1156
+ AudioScheduledSourceNode: false;
1157
+ AudioSinkInfo: false;
1158
+ AudioWorklet: false;
1159
+ AudioWorkletGlobalScope: false;
1160
+ AudioWorkletNode: false;
1161
+ AudioWorkletProcessor: false;
1162
+ AuthenticatorAssertionResponse: false;
1163
+ AuthenticatorAttestationResponse: false;
1164
+ AuthenticatorResponse: false;
1165
+ BackgroundFetchManager: false;
1166
+ BackgroundFetchRecord: false;
1167
+ BackgroundFetchRegistration: false;
1168
+ BarcodeDetector: false;
1169
+ BarProp: false;
1170
+ BaseAudioContext: false;
1171
+ BatteryManager: false;
1172
+ BeforeUnloadEvent: false;
1173
+ BiquadFilterNode: false;
1174
+ Blob: false;
1175
+ BlobEvent: false;
1176
+ Bluetooth: false;
1177
+ BluetoothCharacteristicProperties: false;
1178
+ BluetoothDevice: false;
1179
+ BluetoothRemoteGATTCharacteristic: false;
1180
+ BluetoothRemoteGATTDescriptor: false;
1181
+ BluetoothRemoteGATTServer: false;
1182
+ BluetoothRemoteGATTService: false;
1183
+ BluetoothUUID: false;
1184
+ blur: false;
1185
+ BroadcastChannel: false;
1186
+ BrowserCaptureMediaStreamTrack: false;
1187
+ btoa: false;
1188
+ ByteLengthQueuingStrategy: false;
1189
+ Cache: false;
1190
+ caches: false;
1191
+ CacheStorage: false;
1192
+ cancelAnimationFrame: false;
1193
+ cancelIdleCallback: false;
1194
+ CanvasCaptureMediaStream: false;
1195
+ CanvasCaptureMediaStreamTrack: false;
1196
+ CanvasGradient: false;
1197
+ CanvasPattern: false;
1198
+ CanvasRenderingContext2D: false;
1199
+ CaptureController: false;
1200
+ CaretPosition: false;
1201
+ CDATASection: false;
1202
+ ChannelMergerNode: false;
1203
+ ChannelSplitterNode: false;
1204
+ ChapterInformation: false;
1205
+ CharacterBoundsUpdateEvent: false;
1206
+ CharacterData: false;
1207
+ clearInterval: false;
1208
+ clearTimeout: false;
1209
+ clientInformation: false;
1210
+ Clipboard: false;
1211
+ ClipboardEvent: false;
1212
+ ClipboardItem: false;
1213
+ close: false;
1214
+ closed: false;
1215
+ CloseEvent: false;
1216
+ CloseWatcher: false;
1217
+ Comment: false;
1218
+ CompositionEvent: false;
1219
+ CompressionStream: false;
1220
+ confirm: false;
1221
+ console: false;
1222
+ ConstantSourceNode: false;
1223
+ ContentVisibilityAutoStateChangeEvent: false;
1224
+ ConvolverNode: false;
1225
+ CookieChangeEvent: false;
1226
+ CookieDeprecationLabel: false;
1227
+ cookieStore: false;
1228
+ CookieStore: false;
1229
+ CookieStoreManager: false;
1230
+ CountQueuingStrategy: false;
1231
+ createImageBitmap: false;
1232
+ Credential: false;
1233
+ credentialless: false;
1234
+ CredentialsContainer: false;
1235
+ CropTarget: false;
1236
+ crossOriginIsolated: false;
1237
+ crypto: false;
1238
+ Crypto: false;
1239
+ CryptoKey: false;
1240
+ CSS: false;
1241
+ CSSAnimation: false;
1242
+ CSSConditionRule: false;
1243
+ CSSContainerRule: false;
1244
+ CSSCounterStyleRule: false;
1245
+ CSSFontFaceRule: false;
1246
+ CSSFontFeatureValuesRule: false;
1247
+ CSSFontPaletteValuesRule: false;
1248
+ CSSGroupingRule: false;
1249
+ CSSImageValue: false;
1250
+ CSSImportRule: false;
1251
+ CSSKeyframeRule: false;
1252
+ CSSKeyframesRule: false;
1253
+ CSSKeywordValue: false;
1254
+ CSSLayerBlockRule: false;
1255
+ CSSLayerStatementRule: false;
1256
+ CSSMarginRule: false;
1257
+ CSSMathClamp: false;
1258
+ CSSMathInvert: false;
1259
+ CSSMathMax: false;
1260
+ CSSMathMin: false;
1261
+ CSSMathNegate: false;
1262
+ CSSMathProduct: false;
1263
+ CSSMathSum: false;
1264
+ CSSMathValue: false;
1265
+ CSSMatrixComponent: false;
1266
+ CSSMediaRule: false;
1267
+ CSSNamespaceRule: false;
1268
+ CSSNestedDeclarations: false;
1269
+ CSSNumericArray: false;
1270
+ CSSNumericValue: false;
1271
+ CSSPageDescriptors: false;
1272
+ CSSPageRule: false;
1273
+ CSSPerspective: false;
1274
+ CSSPositionTryDescriptors: false;
1275
+ CSSPositionTryRule: false;
1276
+ CSSPositionValue: false;
1277
+ CSSPropertyRule: false;
1278
+ CSSRotate: false;
1279
+ CSSRule: false;
1280
+ CSSRuleList: false;
1281
+ CSSScale: false;
1282
+ CSSScopeRule: false;
1283
+ CSSSkew: false;
1284
+ CSSSkewX: false;
1285
+ CSSSkewY: false;
1286
+ CSSStartingStyleRule: false;
1287
+ CSSStyleDeclaration: false;
1288
+ CSSStyleRule: false;
1289
+ CSSStyleSheet: false;
1290
+ CSSStyleValue: false;
1291
+ CSSSupportsRule: false;
1292
+ CSSTransformComponent: false;
1293
+ CSSTransformValue: false;
1294
+ CSSTransition: false;
1295
+ CSSTranslate: false;
1296
+ CSSUnitValue: false;
1297
+ CSSUnparsedValue: false;
1298
+ CSSVariableReferenceValue: false;
1299
+ CSSViewTransitionRule: false;
1300
+ currentFrame: false;
1301
+ currentTime: false;
1302
+ CustomElementRegistry: false;
1303
+ customElements: false;
1304
+ CustomEvent: false;
1305
+ CustomStateSet: false;
1306
+ DataTransfer: false;
1307
+ DataTransferItem: false;
1308
+ DataTransferItemList: false;
1309
+ DecompressionStream: false;
1310
+ DelayNode: false;
1311
+ DelegatedInkTrailPresenter: false;
1312
+ DeviceMotionEvent: false;
1313
+ DeviceMotionEventAcceleration: false;
1314
+ DeviceMotionEventRotationRate: false;
1315
+ DeviceOrientationEvent: false;
1316
+ devicePixelRatio: false;
1317
+ dispatchEvent: false;
1318
+ document: false;
1319
+ Document: false;
1320
+ DocumentFragment: false;
1321
+ documentPictureInPicture: false;
1322
+ DocumentPictureInPicture: false;
1323
+ DocumentPictureInPictureEvent: false;
1324
+ DocumentTimeline: false;
1325
+ DocumentType: false;
1326
+ DOMError: false;
1327
+ DOMException: false;
1328
+ DOMImplementation: false;
1329
+ DOMMatrix: false;
1330
+ DOMMatrixReadOnly: false;
1331
+ DOMParser: false;
1332
+ DOMPoint: false;
1333
+ DOMPointReadOnly: false;
1334
+ DOMQuad: false;
1335
+ DOMRect: false;
1336
+ DOMRectList: false;
1337
+ DOMRectReadOnly: false;
1338
+ DOMStringList: false;
1339
+ DOMStringMap: false;
1340
+ DOMTokenList: false;
1341
+ DragEvent: false;
1342
+ DynamicsCompressorNode: false;
1343
+ EditContext: false;
1344
+ Element: false;
1345
+ ElementInternals: false;
1346
+ EncodedAudioChunk: false;
1347
+ EncodedVideoChunk: false;
1348
+ ErrorEvent: false;
1349
+ event: false;
1350
+ Event: false;
1351
+ EventCounts: false;
1352
+ EventSource: false;
1353
+ EventTarget: false;
1354
+ external: false;
1355
+ External: false;
1356
+ EyeDropper: false;
1357
+ FeaturePolicy: false;
1358
+ FederatedCredential: false;
1359
+ fence: false;
1360
+ Fence: false;
1361
+ FencedFrameConfig: false;
1362
+ fetch: false;
1363
+ fetchLater: false;
1364
+ FetchLaterResult: false;
1365
+ File: false;
1366
+ FileList: false;
1367
+ FileReader: false;
1368
+ FileSystem: false;
1369
+ FileSystemDirectoryEntry: false;
1370
+ FileSystemDirectoryHandle: false;
1371
+ FileSystemDirectoryReader: false;
1372
+ FileSystemEntry: false;
1373
+ FileSystemFileEntry: false;
1374
+ FileSystemFileHandle: false;
1375
+ FileSystemHandle: false;
1376
+ FileSystemWritableFileStream: false;
1377
+ find: false;
1378
+ Float16Array: false;
1379
+ focus: false;
1380
+ FocusEvent: false;
1381
+ FontData: false;
1382
+ FontFace: false;
1383
+ FontFaceSet: false;
1384
+ FontFaceSetLoadEvent: false;
1385
+ FormData: false;
1386
+ FormDataEvent: false;
1387
+ FragmentDirective: false;
1388
+ frameElement: false;
1389
+ frames: false;
1390
+ GainNode: false;
1391
+ Gamepad: false;
1392
+ GamepadAxisMoveEvent: false;
1393
+ GamepadButton: false;
1394
+ GamepadButtonEvent: false;
1395
+ GamepadEvent: false;
1396
+ GamepadHapticActuator: false;
1397
+ GamepadPose: false;
1398
+ Geolocation: false;
1399
+ GeolocationCoordinates: false;
1400
+ GeolocationPosition: false;
1401
+ GeolocationPositionError: false;
1402
+ getComputedStyle: false;
1403
+ getScreenDetails: false;
1404
+ getSelection: false;
1405
+ GPU: false;
1406
+ GPUAdapter: false;
1407
+ GPUAdapterInfo: false;
1408
+ GPUBindGroup: false;
1409
+ GPUBindGroupLayout: false;
1410
+ GPUBuffer: false;
1411
+ GPUBufferUsage: false;
1412
+ GPUCanvasContext: false;
1413
+ GPUColorWrite: false;
1414
+ GPUCommandBuffer: false;
1415
+ GPUCommandEncoder: false;
1416
+ GPUCompilationInfo: false;
1417
+ GPUCompilationMessage: false;
1418
+ GPUComputePassEncoder: false;
1419
+ GPUComputePipeline: false;
1420
+ GPUDevice: false;
1421
+ GPUDeviceLostInfo: false;
1422
+ GPUError: false;
1423
+ GPUExternalTexture: false;
1424
+ GPUInternalError: false;
1425
+ GPUMapMode: false;
1426
+ GPUOutOfMemoryError: false;
1427
+ GPUPipelineError: false;
1428
+ GPUPipelineLayout: false;
1429
+ GPUQuerySet: false;
1430
+ GPUQueue: false;
1431
+ GPURenderBundle: false;
1432
+ GPURenderBundleEncoder: false;
1433
+ GPURenderPassEncoder: false;
1434
+ GPURenderPipeline: false;
1435
+ GPUSampler: false;
1436
+ GPUShaderModule: false;
1437
+ GPUShaderStage: false;
1438
+ GPUSupportedFeatures: false;
1439
+ GPUSupportedLimits: false;
1440
+ GPUTexture: false;
1441
+ GPUTextureUsage: false;
1442
+ GPUTextureView: false;
1443
+ GPUUncapturedErrorEvent: false;
1444
+ GPUValidationError: false;
1445
+ GravitySensor: false;
1446
+ Gyroscope: false;
1447
+ HashChangeEvent: false;
1448
+ Headers: false;
1449
+ HID: false;
1450
+ HIDConnectionEvent: false;
1451
+ HIDDevice: false;
1452
+ HIDInputReportEvent: false;
1453
+ Highlight: false;
1454
+ HighlightRegistry: false;
1455
+ history: false;
1456
+ History: false;
1457
+ HTMLAllCollection: false;
1458
+ HTMLAnchorElement: false;
1459
+ HTMLAreaElement: false;
1460
+ HTMLAudioElement: false;
1461
+ HTMLBaseElement: false;
1462
+ HTMLBodyElement: false;
1463
+ HTMLBRElement: false;
1464
+ HTMLButtonElement: false;
1465
+ HTMLCanvasElement: false;
1466
+ HTMLCollection: false;
1467
+ HTMLDataElement: false;
1468
+ HTMLDataListElement: false;
1469
+ HTMLDetailsElement: false;
1470
+ HTMLDialogElement: false;
1471
+ HTMLDirectoryElement: false;
1472
+ HTMLDivElement: false;
1473
+ HTMLDListElement: false;
1474
+ HTMLDocument: false;
1475
+ HTMLElement: false;
1476
+ HTMLEmbedElement: false;
1477
+ HTMLFencedFrameElement: false;
1478
+ HTMLFieldSetElement: false;
1479
+ HTMLFontElement: false;
1480
+ HTMLFormControlsCollection: false;
1481
+ HTMLFormElement: false;
1482
+ HTMLFrameElement: false;
1483
+ HTMLFrameSetElement: false;
1484
+ HTMLHeadElement: false;
1485
+ HTMLHeadingElement: false;
1486
+ HTMLHRElement: false;
1487
+ HTMLHtmlElement: false;
1488
+ HTMLIFrameElement: false;
1489
+ HTMLImageElement: false;
1490
+ HTMLInputElement: false;
1491
+ HTMLLabelElement: false;
1492
+ HTMLLegendElement: false;
1493
+ HTMLLIElement: false;
1494
+ HTMLLinkElement: false;
1495
+ HTMLMapElement: false;
1496
+ HTMLMarqueeElement: false;
1497
+ HTMLMediaElement: false;
1498
+ HTMLMenuElement: false;
1499
+ HTMLMetaElement: false;
1500
+ HTMLMeterElement: false;
1501
+ HTMLModElement: false;
1502
+ HTMLObjectElement: false;
1503
+ HTMLOListElement: false;
1504
+ HTMLOptGroupElement: false;
1505
+ HTMLOptionElement: false;
1506
+ HTMLOptionsCollection: false;
1507
+ HTMLOutputElement: false;
1508
+ HTMLParagraphElement: false;
1509
+ HTMLParamElement: false;
1510
+ HTMLPictureElement: false;
1511
+ HTMLPreElement: false;
1512
+ HTMLProgressElement: false;
1513
+ HTMLQuoteElement: false;
1514
+ HTMLScriptElement: false;
1515
+ HTMLSelectElement: false;
1516
+ HTMLSlotElement: false;
1517
+ HTMLSourceElement: false;
1518
+ HTMLSpanElement: false;
1519
+ HTMLStyleElement: false;
1520
+ HTMLTableCaptionElement: false;
1521
+ HTMLTableCellElement: false;
1522
+ HTMLTableColElement: false;
1523
+ HTMLTableElement: false;
1524
+ HTMLTableRowElement: false;
1525
+ HTMLTableSectionElement: false;
1526
+ HTMLTemplateElement: false;
1527
+ HTMLTextAreaElement: false;
1528
+ HTMLTimeElement: false;
1529
+ HTMLTitleElement: false;
1530
+ HTMLTrackElement: false;
1531
+ HTMLUListElement: false;
1532
+ HTMLUnknownElement: false;
1533
+ HTMLVideoElement: false;
1534
+ IDBCursor: false;
1535
+ IDBCursorWithValue: false;
1536
+ IDBDatabase: false;
1537
+ IDBFactory: false;
1538
+ IDBIndex: false;
1539
+ IDBKeyRange: false;
1540
+ IDBObjectStore: false;
1541
+ IDBOpenDBRequest: false;
1542
+ IDBRequest: false;
1543
+ IDBTransaction: false;
1544
+ IDBVersionChangeEvent: false;
1545
+ IdentityCredential: false;
1546
+ IdentityCredentialError: false;
1547
+ IdentityProvider: false;
1548
+ IdleDeadline: false;
1549
+ IdleDetector: false;
1550
+ IIRFilterNode: false;
1551
+ Image: false;
1552
+ ImageBitmap: false;
1553
+ ImageBitmapRenderingContext: false;
1554
+ ImageCapture: false;
1555
+ ImageData: false;
1556
+ ImageDecoder: false;
1557
+ ImageTrack: false;
1558
+ ImageTrackList: false;
1559
+ indexedDB: false;
1560
+ Ink: false;
1561
+ innerHeight: false;
1562
+ innerWidth: false;
1563
+ InputDeviceCapabilities: false;
1564
+ InputDeviceInfo: false;
1565
+ InputEvent: false;
1566
+ IntersectionObserver: false;
1567
+ IntersectionObserverEntry: false;
1568
+ isSecureContext: false;
1569
+ Keyboard: false;
1570
+ KeyboardEvent: false;
1571
+ KeyboardLayoutMap: false;
1572
+ KeyframeEffect: false;
1573
+ LargestContentfulPaint: false;
1574
+ LaunchParams: false;
1575
+ launchQueue: false;
1576
+ LaunchQueue: false;
1577
+ LayoutShift: false;
1578
+ LayoutShiftAttribution: false;
1579
+ length: false;
1580
+ LinearAccelerationSensor: false;
1581
+ localStorage: false;
1582
+ location: true;
1583
+ Location: false;
1584
+ locationbar: false;
1585
+ Lock: false;
1586
+ LockManager: false;
1587
+ matchMedia: false;
1588
+ MathMLElement: false;
1589
+ MediaCapabilities: false;
1590
+ MediaCapabilitiesInfo: false;
1591
+ MediaDeviceInfo: false;
1592
+ MediaDevices: false;
1593
+ MediaElementAudioSourceNode: false;
1594
+ MediaEncryptedEvent: false;
1595
+ MediaError: false;
1596
+ MediaKeyError: false;
1597
+ MediaKeyMessageEvent: false;
1598
+ MediaKeys: false;
1599
+ MediaKeySession: false;
1600
+ MediaKeyStatusMap: false;
1601
+ MediaKeySystemAccess: false;
1602
+ MediaList: false;
1603
+ MediaMetadata: false;
1604
+ MediaQueryList: false;
1605
+ MediaQueryListEvent: false;
1606
+ MediaRecorder: false;
1607
+ MediaRecorderErrorEvent: false;
1608
+ MediaSession: false;
1609
+ MediaSource: false;
1610
+ MediaSourceHandle: false;
1611
+ MediaStream: false;
1612
+ MediaStreamAudioDestinationNode: false;
1613
+ MediaStreamAudioSourceNode: false;
1614
+ MediaStreamEvent: false;
1615
+ MediaStreamTrack: false;
1616
+ MediaStreamTrackAudioSourceNode: false;
1617
+ MediaStreamTrackAudioStats: false;
1618
+ MediaStreamTrackEvent: false;
1619
+ MediaStreamTrackGenerator: false;
1620
+ MediaStreamTrackProcessor: false;
1621
+ MediaStreamTrackVideoStats: false;
1622
+ menubar: false;
1623
+ MessageChannel: false;
1624
+ MessageEvent: false;
1625
+ MessagePort: false;
1626
+ MIDIAccess: false;
1627
+ MIDIConnectionEvent: false;
1628
+ MIDIInput: false;
1629
+ MIDIInputMap: false;
1630
+ MIDIMessageEvent: false;
1631
+ MIDIOutput: false;
1632
+ MIDIOutputMap: false;
1633
+ MIDIPort: false;
1634
+ MimeType: false;
1635
+ MimeTypeArray: false;
1636
+ model: false;
1637
+ ModelGenericSession: false;
1638
+ ModelManager: false;
1639
+ MouseEvent: false;
1640
+ moveBy: false;
1641
+ moveTo: false;
1642
+ MutationEvent: false;
1643
+ MutationObserver: false;
1644
+ MutationRecord: false;
1645
+ name: false;
1646
+ NamedNodeMap: false;
1647
+ NavigateEvent: false;
1648
+ navigation: false;
1649
+ Navigation: false;
1650
+ NavigationActivation: false;
1651
+ NavigationCurrentEntryChangeEvent: false;
1652
+ NavigationDestination: false;
1653
+ NavigationHistoryEntry: false;
1654
+ NavigationPreloadManager: false;
1655
+ NavigationTransition: false;
1656
+ navigator: false;
1657
+ Navigator: false;
1658
+ NavigatorLogin: false;
1659
+ NavigatorManagedData: false;
1660
+ NavigatorUAData: false;
1661
+ NetworkInformation: false;
1662
+ Node: false;
1663
+ NodeFilter: false;
1664
+ NodeIterator: false;
1665
+ NodeList: false;
1666
+ Notification: false;
1667
+ NotifyPaintEvent: false;
1668
+ NotRestoredReasonDetails: false;
1669
+ NotRestoredReasons: false;
1670
+ OfflineAudioCompletionEvent: false;
1671
+ OfflineAudioContext: false;
1672
+ offscreenBuffering: false;
1673
+ OffscreenCanvas: false;
1674
+ OffscreenCanvasRenderingContext2D: false;
1675
+ onabort: true;
1676
+ onafterprint: true;
1677
+ onanimationcancel: true;
1678
+ onanimationend: true;
1679
+ onanimationiteration: true;
1680
+ onanimationstart: true;
1681
+ onappinstalled: true;
1682
+ onauxclick: true;
1683
+ onbeforeinput: true;
1684
+ onbeforeinstallprompt: true;
1685
+ onbeforematch: true;
1686
+ onbeforeprint: true;
1687
+ onbeforetoggle: true;
1688
+ onbeforeunload: true;
1689
+ onbeforexrselect: true;
1690
+ onblur: true;
1691
+ oncancel: true;
1692
+ oncanplay: true;
1693
+ oncanplaythrough: true;
1694
+ onchange: true;
1695
+ onclick: true;
1696
+ onclose: true;
1697
+ oncontentvisibilityautostatechange: true;
1698
+ oncontextlost: true;
1699
+ oncontextmenu: true;
1700
+ oncontextrestored: true;
1701
+ oncopy: true;
1702
+ oncuechange: true;
1703
+ oncut: true;
1704
+ ondblclick: true;
1705
+ ondevicemotion: true;
1706
+ ondeviceorientation: true;
1707
+ ondeviceorientationabsolute: true;
1708
+ ondrag: true;
1709
+ ondragend: true;
1710
+ ondragenter: true;
1711
+ ondragleave: true;
1712
+ ondragover: true;
1713
+ ondragstart: true;
1714
+ ondrop: true;
1715
+ ondurationchange: true;
1716
+ onemptied: true;
1717
+ onended: true;
1718
+ onerror: true;
1719
+ onfocus: true;
1720
+ onformdata: true;
1721
+ ongamepadconnected: true;
1722
+ ongamepaddisconnected: true;
1723
+ ongotpointercapture: true;
1724
+ onhashchange: true;
1725
+ oninput: true;
1726
+ oninvalid: true;
1727
+ onkeydown: true;
1728
+ onkeypress: true;
1729
+ onkeyup: true;
1730
+ onlanguagechange: true;
1731
+ onload: true;
1732
+ onloadeddata: true;
1733
+ onloadedmetadata: true;
1734
+ onloadstart: true;
1735
+ onlostpointercapture: true;
1736
+ onmessage: true;
1737
+ onmessageerror: true;
1738
+ onmousedown: true;
1739
+ onmouseenter: true;
1740
+ onmouseleave: true;
1741
+ onmousemove: true;
1742
+ onmouseout: true;
1743
+ onmouseover: true;
1744
+ onmouseup: true;
1745
+ onmousewheel: true;
1746
+ onoffline: true;
1747
+ ononline: true;
1748
+ onpagehide: true;
1749
+ onpagereveal: true;
1750
+ onpageshow: true;
1751
+ onpageswap: true;
1752
+ onpaste: true;
1753
+ onpause: true;
1754
+ onplay: true;
1755
+ onplaying: true;
1756
+ onpointercancel: true;
1757
+ onpointerdown: true;
1758
+ onpointerenter: true;
1759
+ onpointerleave: true;
1760
+ onpointermove: true;
1761
+ onpointerout: true;
1762
+ onpointerover: true;
1763
+ onpointerrawupdate: true;
1764
+ onpointerup: true;
1765
+ onpopstate: true;
1766
+ onprogress: true;
1767
+ onratechange: true;
1768
+ onrejectionhandled: true;
1769
+ onreset: true;
1770
+ onresize: true;
1771
+ onscroll: true;
1772
+ onscrollend: true;
1773
+ onscrollsnapchange: true;
1774
+ onscrollsnapchanging: true;
1775
+ onsearch: true;
1776
+ onsecuritypolicyviolation: true;
1777
+ onseeked: true;
1778
+ onseeking: true;
1779
+ onselect: true;
1780
+ onselectionchange: true;
1781
+ onselectstart: true;
1782
+ onslotchange: true;
1783
+ onstalled: true;
1784
+ onstorage: true;
1785
+ onsubmit: true;
1786
+ onsuspend: true;
1787
+ ontimeupdate: true;
1788
+ ontoggle: true;
1789
+ ontransitioncancel: true;
1790
+ ontransitionend: true;
1791
+ ontransitionrun: true;
1792
+ ontransitionstart: true;
1793
+ onunhandledrejection: true;
1794
+ onunload: true;
1795
+ onvolumechange: true;
1796
+ onwaiting: true;
1797
+ onwheel: true;
1798
+ open: false;
1799
+ opener: false;
1800
+ Option: false;
1801
+ OrientationSensor: false;
1802
+ origin: false;
1803
+ originAgentCluster: false;
1804
+ OscillatorNode: false;
1805
+ OTPCredential: false;
1806
+ outerHeight: false;
1807
+ outerWidth: false;
1808
+ OverconstrainedError: false;
1809
+ PageRevealEvent: false;
1810
+ PageSwapEvent: false;
1811
+ PageTransitionEvent: false;
1812
+ pageXOffset: false;
1813
+ pageYOffset: false;
1814
+ PannerNode: false;
1815
+ parent: false;
1816
+ PasswordCredential: false;
1817
+ Path2D: false;
1818
+ PaymentAddress: false;
1819
+ PaymentManager: false;
1820
+ PaymentMethodChangeEvent: false;
1821
+ PaymentRequest: false;
1822
+ PaymentRequestUpdateEvent: false;
1823
+ PaymentResponse: false;
1824
+ performance: false;
1825
+ Performance: false;
1826
+ PerformanceElementTiming: false;
1827
+ PerformanceEntry: false;
1828
+ PerformanceEventTiming: false;
1829
+ PerformanceLongAnimationFrameTiming: false;
1830
+ PerformanceLongTaskTiming: false;
1831
+ PerformanceMark: false;
1832
+ PerformanceMeasure: false;
1833
+ PerformanceNavigation: false;
1834
+ PerformanceNavigationTiming: false;
1835
+ PerformanceObserver: false;
1836
+ PerformanceObserverEntryList: false;
1837
+ PerformancePaintTiming: false;
1838
+ PerformanceResourceTiming: false;
1839
+ PerformanceScriptTiming: false;
1840
+ PerformanceServerTiming: false;
1841
+ PerformanceTiming: false;
1842
+ PeriodicSyncManager: false;
1843
+ PeriodicWave: false;
1844
+ Permissions: false;
1845
+ PermissionStatus: false;
1846
+ PERSISTENT: false;
1847
+ personalbar: false;
1848
+ PictureInPictureEvent: false;
1849
+ PictureInPictureWindow: false;
1850
+ Plugin: false;
1851
+ PluginArray: false;
1852
+ PointerEvent: false;
1853
+ PopStateEvent: false;
1854
+ postMessage: false;
1855
+ Presentation: false;
1856
+ PresentationAvailability: false;
1857
+ PresentationConnection: false;
1858
+ PresentationConnectionAvailableEvent: false;
1859
+ PresentationConnectionCloseEvent: false;
1860
+ PresentationConnectionList: false;
1861
+ PresentationReceiver: false;
1862
+ PresentationRequest: false;
1863
+ PressureObserver: false;
1864
+ PressureRecord: false;
1865
+ print: false;
1866
+ ProcessingInstruction: false;
1867
+ Profiler: false;
1868
+ ProgressEvent: false;
1869
+ PromiseRejectionEvent: false;
1870
+ prompt: false;
1871
+ ProtectedAudience: false;
1872
+ PublicKeyCredential: false;
1873
+ PushManager: false;
1874
+ PushSubscription: false;
1875
+ PushSubscriptionOptions: false;
1876
+ queryLocalFonts: false;
1877
+ queueMicrotask: false;
1878
+ RadioNodeList: false;
1879
+ Range: false;
1880
+ ReadableByteStreamController: false;
1881
+ ReadableStream: false;
1882
+ ReadableStreamBYOBReader: false;
1883
+ ReadableStreamBYOBRequest: false;
1884
+ ReadableStreamDefaultController: false;
1885
+ ReadableStreamDefaultReader: false;
1886
+ registerProcessor: false;
1887
+ RelativeOrientationSensor: false;
1888
+ RemotePlayback: false;
1889
+ removeEventListener: false;
1890
+ reportError: false;
1891
+ ReportingObserver: false;
1892
+ Request: false;
1893
+ requestAnimationFrame: false;
1894
+ requestIdleCallback: false;
1895
+ resizeBy: false;
1896
+ ResizeObserver: false;
1897
+ ResizeObserverEntry: false;
1898
+ ResizeObserverSize: false;
1899
+ resizeTo: false;
1900
+ Response: false;
1901
+ RTCCertificate: false;
1902
+ RTCDataChannel: false;
1903
+ RTCDataChannelEvent: false;
1904
+ RTCDtlsTransport: false;
1905
+ RTCDTMFSender: false;
1906
+ RTCDTMFToneChangeEvent: false;
1907
+ RTCEncodedAudioFrame: false;
1908
+ RTCEncodedVideoFrame: false;
1909
+ RTCError: false;
1910
+ RTCErrorEvent: false;
1911
+ RTCIceCandidate: false;
1912
+ RTCIceTransport: false;
1913
+ RTCPeerConnection: false;
1914
+ RTCPeerConnectionIceErrorEvent: false;
1915
+ RTCPeerConnectionIceEvent: false;
1916
+ RTCRtpReceiver: false;
1917
+ RTCRtpScriptTransform: false;
1918
+ RTCRtpSender: false;
1919
+ RTCRtpTransceiver: false;
1920
+ RTCSctpTransport: false;
1921
+ RTCSessionDescription: false;
1922
+ RTCStatsReport: false;
1923
+ RTCTrackEvent: false;
1924
+ sampleRate: false;
1925
+ scheduler: false;
1926
+ Scheduler: false;
1927
+ Scheduling: false;
1928
+ screen: false;
1929
+ Screen: false;
1930
+ ScreenDetailed: false;
1931
+ ScreenDetails: false;
1932
+ screenLeft: false;
1933
+ ScreenOrientation: false;
1934
+ screenTop: false;
1935
+ screenX: false;
1936
+ screenY: false;
1937
+ ScriptProcessorNode: false;
1938
+ scroll: false;
1939
+ scrollbars: false;
1940
+ scrollBy: false;
1941
+ ScrollTimeline: false;
1942
+ scrollTo: false;
1943
+ scrollX: false;
1944
+ scrollY: false;
1945
+ SecurityPolicyViolationEvent: false;
1946
+ Selection: false;
1947
+ self: false;
1948
+ Sensor: false;
1949
+ SensorErrorEvent: false;
1950
+ Serial: false;
1951
+ SerialPort: false;
1952
+ ServiceWorker: false;
1953
+ ServiceWorkerContainer: false;
1954
+ ServiceWorkerRegistration: false;
1955
+ sessionStorage: false;
1956
+ setInterval: false;
1957
+ setTimeout: false;
1958
+ ShadowRoot: false;
1959
+ sharedStorage: false;
1960
+ SharedStorage: false;
1961
+ SharedStorageWorklet: false;
1962
+ SharedWorker: false;
1963
+ showDirectoryPicker: false;
1964
+ showOpenFilePicker: false;
1965
+ showSaveFilePicker: false;
1966
+ SnapEvent: false;
1967
+ SourceBuffer: false;
1968
+ SourceBufferList: false;
1969
+ speechSynthesis: false;
1970
+ SpeechSynthesis: false;
1971
+ SpeechSynthesisErrorEvent: false;
1972
+ SpeechSynthesisEvent: false;
1973
+ SpeechSynthesisUtterance: false;
1974
+ SpeechSynthesisVoice: false;
1975
+ StaticRange: false;
1976
+ status: false;
1977
+ statusbar: false;
1978
+ StereoPannerNode: false;
1979
+ stop: false;
1980
+ Storage: false;
1981
+ StorageBucket: false;
1982
+ StorageBucketManager: false;
1983
+ StorageEvent: false;
1984
+ StorageManager: false;
1985
+ structuredClone: false;
1986
+ styleMedia: false;
1987
+ StylePropertyMap: false;
1988
+ StylePropertyMapReadOnly: false;
1989
+ StyleSheet: false;
1990
+ StyleSheetList: false;
1991
+ SubmitEvent: false;
1992
+ SubtleCrypto: false;
1993
+ SVGAElement: false;
1994
+ SVGAngle: false;
1995
+ SVGAnimatedAngle: false;
1996
+ SVGAnimatedBoolean: false;
1997
+ SVGAnimatedEnumeration: false;
1998
+ SVGAnimatedInteger: false;
1999
+ SVGAnimatedLength: false;
2000
+ SVGAnimatedLengthList: false;
2001
+ SVGAnimatedNumber: false;
2002
+ SVGAnimatedNumberList: false;
2003
+ SVGAnimatedPreserveAspectRatio: false;
2004
+ SVGAnimatedRect: false;
2005
+ SVGAnimatedString: false;
2006
+ SVGAnimatedTransformList: false;
2007
+ SVGAnimateElement: false;
2008
+ SVGAnimateMotionElement: false;
2009
+ SVGAnimateTransformElement: false;
2010
+ SVGAnimationElement: false;
2011
+ SVGCircleElement: false;
2012
+ SVGClipPathElement: false;
2013
+ SVGComponentTransferFunctionElement: false;
2014
+ SVGDefsElement: false;
2015
+ SVGDescElement: false;
2016
+ SVGElement: false;
2017
+ SVGEllipseElement: false;
2018
+ SVGFEBlendElement: false;
2019
+ SVGFEColorMatrixElement: false;
2020
+ SVGFEComponentTransferElement: false;
2021
+ SVGFECompositeElement: false;
2022
+ SVGFEConvolveMatrixElement: false;
2023
+ SVGFEDiffuseLightingElement: false;
2024
+ SVGFEDisplacementMapElement: false;
2025
+ SVGFEDistantLightElement: false;
2026
+ SVGFEDropShadowElement: false;
2027
+ SVGFEFloodElement: false;
2028
+ SVGFEFuncAElement: false;
2029
+ SVGFEFuncBElement: false;
2030
+ SVGFEFuncGElement: false;
2031
+ SVGFEFuncRElement: false;
2032
+ SVGFEGaussianBlurElement: false;
2033
+ SVGFEImageElement: false;
2034
+ SVGFEMergeElement: false;
2035
+ SVGFEMergeNodeElement: false;
2036
+ SVGFEMorphologyElement: false;
2037
+ SVGFEOffsetElement: false;
2038
+ SVGFEPointLightElement: false;
2039
+ SVGFESpecularLightingElement: false;
2040
+ SVGFESpotLightElement: false;
2041
+ SVGFETileElement: false;
2042
+ SVGFETurbulenceElement: false;
2043
+ SVGFilterElement: false;
2044
+ SVGForeignObjectElement: false;
2045
+ SVGGElement: false;
2046
+ SVGGeometryElement: false;
2047
+ SVGGradientElement: false;
2048
+ SVGGraphicsElement: false;
2049
+ SVGImageElement: false;
2050
+ SVGLength: false;
2051
+ SVGLengthList: false;
2052
+ SVGLinearGradientElement: false;
2053
+ SVGLineElement: false;
2054
+ SVGMarkerElement: false;
2055
+ SVGMaskElement: false;
2056
+ SVGMatrix: false;
2057
+ SVGMetadataElement: false;
2058
+ SVGMPathElement: false;
2059
+ SVGNumber: false;
2060
+ SVGNumberList: false;
2061
+ SVGPathElement: false;
2062
+ SVGPatternElement: false;
2063
+ SVGPoint: false;
2064
+ SVGPointList: false;
2065
+ SVGPolygonElement: false;
2066
+ SVGPolylineElement: false;
2067
+ SVGPreserveAspectRatio: false;
2068
+ SVGRadialGradientElement: false;
2069
+ SVGRect: false;
2070
+ SVGRectElement: false;
2071
+ SVGScriptElement: false;
2072
+ SVGSetElement: false;
2073
+ SVGStopElement: false;
2074
+ SVGStringList: false;
2075
+ SVGStyleElement: false;
2076
+ SVGSVGElement: false;
2077
+ SVGSwitchElement: false;
2078
+ SVGSymbolElement: false;
2079
+ SVGTextContentElement: false;
2080
+ SVGTextElement: false;
2081
+ SVGTextPathElement: false;
2082
+ SVGTextPositioningElement: false;
2083
+ SVGTitleElement: false;
2084
+ SVGTransform: false;
2085
+ SVGTransformList: false;
2086
+ SVGTSpanElement: false;
2087
+ SVGUnitTypes: false;
2088
+ SVGUseElement: false;
2089
+ SVGViewElement: false;
2090
+ SyncManager: false;
2091
+ TaskAttributionTiming: false;
2092
+ TaskController: false;
2093
+ TaskPriorityChangeEvent: false;
2094
+ TaskSignal: false;
2095
+ TEMPORARY: false;
2096
+ Text: false;
2097
+ TextDecoder: false;
2098
+ TextDecoderStream: false;
2099
+ TextEncoder: false;
2100
+ TextEncoderStream: false;
2101
+ TextEvent: false;
2102
+ TextFormat: false;
2103
+ TextFormatUpdateEvent: false;
2104
+ TextMetrics: false;
2105
+ TextTrack: false;
2106
+ TextTrackCue: false;
2107
+ TextTrackCueList: false;
2108
+ TextTrackList: false;
2109
+ TextUpdateEvent: false;
2110
+ TimeEvent: false;
2111
+ TimeRanges: false;
2112
+ ToggleEvent: false;
2113
+ toolbar: false;
2114
+ top: false;
2115
+ Touch: false;
2116
+ TouchEvent: false;
2117
+ TouchList: false;
2118
+ TrackEvent: false;
2119
+ TransformStream: false;
2120
+ TransformStreamDefaultController: false;
2121
+ TransitionEvent: false;
2122
+ TreeWalker: false;
2123
+ TrustedHTML: false;
2124
+ TrustedScript: false;
2125
+ TrustedScriptURL: false;
2126
+ TrustedTypePolicy: false;
2127
+ TrustedTypePolicyFactory: false;
2128
+ trustedTypes: false;
2129
+ UIEvent: false;
2130
+ URL: false;
2131
+ URLPattern: false;
2132
+ URLSearchParams: false;
2133
+ USB: false;
2134
+ USBAlternateInterface: false;
2135
+ USBConfiguration: false;
2136
+ USBConnectionEvent: false;
2137
+ USBDevice: false;
2138
+ USBEndpoint: false;
2139
+ USBInterface: false;
2140
+ USBInTransferResult: false;
2141
+ USBIsochronousInTransferPacket: false;
2142
+ USBIsochronousInTransferResult: false;
2143
+ USBIsochronousOutTransferPacket: false;
2144
+ USBIsochronousOutTransferResult: false;
2145
+ USBOutTransferResult: false;
2146
+ UserActivation: false;
2147
+ ValidityState: false;
2148
+ VideoColorSpace: false;
2149
+ VideoDecoder: false;
2150
+ VideoEncoder: false;
2151
+ VideoFrame: false;
2152
+ VideoPlaybackQuality: false;
2153
+ ViewTimeline: false;
2154
+ ViewTransition: false;
2155
+ ViewTransitionTypeSet: false;
2156
+ VirtualKeyboard: false;
2157
+ VirtualKeyboardGeometryChangeEvent: false;
2158
+ VisibilityStateEntry: false;
2159
+ visualViewport: false;
2160
+ VisualViewport: false;
2161
+ VTTCue: false;
2162
+ VTTRegion: false;
2163
+ WakeLock: false;
2164
+ WakeLockSentinel: false;
2165
+ WaveShaperNode: false;
2166
+ WebAssembly: false;
2167
+ WebGL2RenderingContext: false;
2168
+ WebGLActiveInfo: false;
2169
+ WebGLBuffer: false;
2170
+ WebGLContextEvent: false;
2171
+ WebGLFramebuffer: false;
2172
+ WebGLObject: false;
2173
+ WebGLProgram: false;
2174
+ WebGLQuery: false;
2175
+ WebGLRenderbuffer: false;
2176
+ WebGLRenderingContext: false;
2177
+ WebGLSampler: false;
2178
+ WebGLShader: false;
2179
+ WebGLShaderPrecisionFormat: false;
2180
+ WebGLSync: false;
2181
+ WebGLTexture: false;
2182
+ WebGLTransformFeedback: false;
2183
+ WebGLUniformLocation: false;
2184
+ WebGLVertexArrayObject: false;
2185
+ WebSocket: false;
2186
+ WebSocketError: false;
2187
+ WebSocketStream: false;
2188
+ WebTransport: false;
2189
+ WebTransportBidirectionalStream: false;
2190
+ WebTransportDatagramDuplexStream: false;
2191
+ WebTransportError: false;
2192
+ WebTransportReceiveStream: false;
2193
+ WebTransportSendStream: false;
2194
+ WGSLLanguageFeatures: false;
2195
+ WheelEvent: false;
2196
+ window: false;
2197
+ Window: false;
2198
+ WindowControlsOverlay: false;
2199
+ WindowControlsOverlayGeometryChangeEvent: false;
2200
+ Worker: false;
2201
+ Worklet: false;
2202
+ WorkletGlobalScope: false;
2203
+ WritableStream: false;
2204
+ WritableStreamDefaultController: false;
2205
+ WritableStreamDefaultWriter: false;
2206
+ XMLDocument: false;
2207
+ XMLHttpRequest: false;
2208
+ XMLHttpRequestEventTarget: false;
2209
+ XMLHttpRequestUpload: false;
2210
+ XMLSerializer: false;
2211
+ XPathEvaluator: false;
2212
+ XPathExpression: false;
2213
+ XPathResult: false;
2214
+ XRAnchor: false;
2215
+ XRAnchorSet: false;
2216
+ XRBoundedReferenceSpace: false;
2217
+ XRCamera: false;
2218
+ XRCPUDepthInformation: false;
2219
+ XRDepthInformation: false;
2220
+ XRDOMOverlayState: false;
2221
+ XRFrame: false;
2222
+ XRHand: false;
2223
+ XRHitTestResult: false;
2224
+ XRHitTestSource: false;
2225
+ XRInputSource: false;
2226
+ XRInputSourceArray: false;
2227
+ XRInputSourceEvent: false;
2228
+ XRInputSourcesChangeEvent: false;
2229
+ XRJointPose: false;
2230
+ XRJointSpace: false;
2231
+ XRLayer: false;
2232
+ XRLightEstimate: false;
2233
+ XRLightProbe: false;
2234
+ XRPose: false;
2235
+ XRRay: false;
2236
+ XRReferenceSpace: false;
2237
+ XRReferenceSpaceEvent: false;
2238
+ XRRenderState: false;
2239
+ XRRigidTransform: false;
2240
+ XRSession: false;
2241
+ XRSessionEvent: false;
2242
+ XRSpace: false;
2243
+ XRSystem: false;
2244
+ XRTransientInputHitTestResult: false;
2245
+ XRTransientInputHitTestSource: false;
2246
+ XRView: false;
2247
+ XRViewerPose: false;
2248
+ XRViewport: false;
2249
+ XRWebGLBinding: false;
2250
+ XRWebGLDepthInformation: false;
2251
+ XRWebGLLayer: false;
2252
+ XSLTProcessor: false;
2253
+ };
2254
+ };
2255
+ settings: {
2256
+ 'import/resolver': {
2257
+ node: {
2258
+ extensions: string[];
2259
+ };
2260
+ };
2261
+ react: {
2262
+ pragma: string;
2263
+ version: string;
2264
+ };
2265
+ propWrapperFunctions: string[];
2266
+ };
2267
+ rules: {
2268
+ 'no-underscore-dangle': ["error", {
2269
+ allow: string[];
2270
+ allowAfterThis: boolean;
2271
+ allowAfterSuper: boolean;
2272
+ enforceInMethodNames: boolean;
2273
+ }];
2274
+ 'jsx-quotes': ["error", string];
2275
+ 'class-methods-use-this': ["error", {
2276
+ exceptMethods: string[];
2277
+ }];
2278
+ 'react/checked-requires-onchange-or-readonly': ["off", {
2279
+ ignoreMissingProperties: boolean;
2280
+ ignoreExclusiveCheckedAttribute: boolean;
2281
+ }];
2282
+ 'react/display-name': ["off", {
2283
+ ignoreTranspilerName: boolean;
2284
+ }];
2285
+ 'react/forbid-prop-types': ["error", {
2286
+ forbid: string[];
2287
+ checkContextTypes: boolean;
2288
+ checkChildContextTypes: boolean;
2289
+ }];
2290
+ 'react/forbid-dom-props': ["off", {
2291
+ forbid: never[];
2292
+ }];
2293
+ 'react/jsx-boolean-value': ["error", string, {
2294
+ always: never[];
2295
+ }];
2296
+ 'react/jsx-closing-bracket-location': ["error", string];
2297
+ 'react/jsx-closing-tag-location': "error";
2298
+ 'react/jsx-curly-spacing': ["error", string, {
2299
+ allowMultiline: boolean;
2300
+ }];
2301
+ 'react/jsx-handler-names': ["off", {
2302
+ eventHandlerPrefix: string;
2303
+ eventHandlerPropPrefix: string;
2304
+ }];
2305
+ 'react/jsx-indent-props': ["error", number];
2306
+ 'react/jsx-key': "off";
2307
+ 'react/jsx-max-props-per-line': ["error", {
2308
+ maximum: number;
2309
+ when: string;
2310
+ }];
2311
+ 'react/jsx-no-bind': ["error", {
2312
+ ignoreRefs: boolean;
2313
+ allowArrowFunctions: boolean;
2314
+ allowFunctions: boolean;
2315
+ allowBind: boolean;
2316
+ ignoreDOMComponents: boolean;
2317
+ }];
2318
+ 'react/jsx-no-duplicate-props': ["error", {
2319
+ ignoreCase: boolean;
2320
+ }];
2321
+ 'react/jsx-no-literals': ["off", {
2322
+ noStrings: boolean;
2323
+ }];
2324
+ 'react/jsx-no-undef': "error";
2325
+ 'react/jsx-pascal-case': ["error", {
2326
+ allowAllCaps: boolean;
2327
+ ignore: never[];
2328
+ }];
2329
+ 'react/sort-prop-types': ["off", {
2330
+ ignoreCase: boolean;
2331
+ callbacksLast: boolean;
2332
+ requiredFirst: boolean;
2333
+ sortShapeProp: boolean;
2334
+ }];
2335
+ 'react/jsx-sort-prop-types': "off";
2336
+ 'react/jsx-sort-props': ["off", {
2337
+ ignoreCase: boolean;
2338
+ callbacksLast: boolean;
2339
+ shorthandFirst: boolean;
2340
+ shorthandLast: boolean;
2341
+ noSortAlphabetically: boolean;
2342
+ reservedFirst: boolean;
2343
+ }];
2344
+ 'react/jsx-sort-default-props': ["off", {
2345
+ ignoreCase: boolean;
2346
+ }];
2347
+ 'react/jsx-uses-react': ["error"];
2348
+ 'react/jsx-uses-vars': "error";
2349
+ 'react/no-danger': "warn";
2350
+ 'react/no-deprecated': ["error"];
2351
+ 'react/no-did-mount-set-state': "off";
2352
+ 'react/no-did-update-set-state': "error";
2353
+ 'react/no-will-update-set-state': "error";
2354
+ 'react/no-direct-mutation-state': "off";
2355
+ 'react/no-is-mounted': "error";
2356
+ 'react/no-multi-comp': "off";
2357
+ 'react/no-set-state': "off";
2358
+ 'react/no-string-refs': "error";
2359
+ 'react/no-unknown-property': "error";
2360
+ 'react/prefer-es6-class': ["error", string];
2361
+ 'react/prefer-stateless-function': ["error", {
2362
+ ignorePureComponents: boolean;
2363
+ }];
2364
+ 'react/prop-types': ["error", {
2365
+ ignore: never[];
2366
+ customValidators: never[];
2367
+ skipUndeclared: boolean;
2368
+ }];
2369
+ 'react/react-in-jsx-scope': "error";
2370
+ 'react/require-render-return': "error";
2371
+ 'react/self-closing-comp': "error";
2372
+ 'react/sort-comp': ["error", {
2373
+ order: string[];
2374
+ groups: {
2375
+ lifecycle: string[];
2376
+ rendering: string[];
2377
+ };
2378
+ }];
2379
+ 'react/jsx-wrap-multilines': ["error", {
2380
+ declaration: string;
2381
+ assignment: string;
2382
+ return: string;
2383
+ arrow: string;
2384
+ condition: string;
2385
+ logical: string;
2386
+ prop: string;
2387
+ }];
2388
+ 'react/jsx-first-prop-new-line': ["error", string];
2389
+ 'react/jsx-equals-spacing': ["error", string];
2390
+ 'react/jsx-indent': ["error", number];
2391
+ 'react/jsx-no-target-blank': ["error", {
2392
+ enforceDynamicLinks: string;
2393
+ }];
2394
+ 'react/jsx-filename-extension': ["error", {
2395
+ extensions: string[];
2396
+ }];
2397
+ 'react/jsx-no-comment-textnodes': "error";
2398
+ 'react/no-render-return-value': "error";
2399
+ 'react/require-optimization': ["off", {
2400
+ allowDecorators: never[];
2401
+ }];
2402
+ 'react/no-find-dom-node': "error";
2403
+ 'react/forbid-component-props': ["off", {
2404
+ forbid: never[];
2405
+ }];
2406
+ 'react/forbid-elements': ["off", {
2407
+ forbid: never[];
2408
+ }];
2409
+ 'react/no-danger-with-children': "error";
2410
+ 'react/no-unused-prop-types': ["error", {
2411
+ customValidators: never[];
2412
+ skipShapeProps: boolean;
2413
+ }];
2414
+ 'react/style-prop-object': "error";
2415
+ 'react/no-unescaped-entities': "error";
2416
+ 'react/no-children-prop': "error";
2417
+ 'react/jsx-tag-spacing': ["error", {
2418
+ closingSlash: string;
2419
+ beforeSelfClosing: string;
2420
+ afterOpening: string;
2421
+ beforeClosing: string;
2422
+ }];
2423
+ 'react/jsx-space-before-closing': ["off", string];
2424
+ 'react/no-array-index-key': "error";
2425
+ 'react/require-default-props': ["error", {
2426
+ forbidDefaultForRequired: boolean;
2427
+ }];
2428
+ 'react/forbid-foreign-prop-types': ["warn", {
2429
+ allowInPropTypes: boolean;
2430
+ }];
2431
+ 'react/void-dom-elements-no-children': "error";
2432
+ 'react/default-props-match-prop-types': ["error", {
2433
+ allowRequiredDefaults: boolean;
2434
+ }];
2435
+ 'react/no-redundant-should-component-update': "error";
2436
+ 'react/no-unused-state': "error";
2437
+ 'react/boolean-prop-naming': ["off", {
2438
+ propTypeNames: string[];
2439
+ rule: string;
2440
+ message: string;
2441
+ }];
2442
+ 'react/no-typos': "error";
2443
+ 'react/jsx-curly-brace-presence': ["error", {
2444
+ props: string;
2445
+ children: string;
2446
+ }];
2447
+ 'react/jsx-one-expression-per-line': ["error", {
2448
+ allow: string;
2449
+ }];
2450
+ 'react/destructuring-assignment': ["error", string];
2451
+ 'react/no-access-state-in-setstate': "error";
2452
+ 'react/button-has-type': ["error", {
2453
+ button: boolean;
2454
+ submit: boolean;
2455
+ reset: boolean;
2456
+ }];
2457
+ 'react/jsx-child-element-spacing': "off";
2458
+ 'react/no-this-in-sfc': "error";
2459
+ 'react/jsx-max-depth': "off";
2460
+ 'react/jsx-props-no-multi-spaces': "error";
2461
+ 'react/no-unsafe': "off";
2462
+ 'react/jsx-fragments': ["error", string];
2463
+ 'react/jsx-curly-newline': ["error", {
2464
+ multiline: string;
2465
+ singleline: string;
2466
+ }];
2467
+ 'react/state-in-constructor': ["error", string];
2468
+ 'react/static-property-placement': ["error", string];
2469
+ 'react/jsx-props-no-spreading': ["error", {
2470
+ html: string;
2471
+ custom: string;
2472
+ explicitSpread: string;
2473
+ exceptions: never[];
2474
+ }];
2475
+ 'react/prefer-read-only-props': "off";
2476
+ 'react/jsx-no-script-url': ["error", {
2477
+ name: string;
2478
+ props: string[];
2479
+ }[]];
2480
+ 'react/jsx-no-useless-fragment': "error";
2481
+ 'react/no-adjacent-inline-elements': "off";
2482
+ 'react/function-component-definition': ["error", {
2483
+ namedComponents: string[];
2484
+ unnamedComponents: string;
2485
+ }];
2486
+ 'react/jsx-newline': "off";
2487
+ 'react/jsx-no-constructed-context-values': "error";
2488
+ 'react/no-unstable-nested-components': "error";
2489
+ 'react/no-namespace': "error";
2490
+ 'react/prefer-exact-props': "error";
2491
+ 'react/no-arrow-function-lifecycle': "error";
2492
+ 'react/no-invalid-html-attribute': "error";
2493
+ 'react/no-unused-class-component-methods': "error";
2494
+ 'react/hook-use-state': "off";
2495
+ 'react/iframe-missing-sandbox': "off";
2496
+ 'react/jsx-no-leaked-render': "off";
2497
+ 'react/no-object-type-as-default-prop': "off";
2498
+ 'react/sort-default-props': ["off", {
2499
+ ignoreCase: boolean;
2500
+ }];
2501
+ 'react/forward-ref-uses-ref': "off";
2502
+ 'react/jsx-props-no-spread-multi': "off";
2503
+ };
2504
+ };
2505
+ reactA11y: {
2506
+ name: string;
2507
+ plugins: {
2508
+ 'jsx-a11y': any;
2509
+ };
2510
+ languageOptions: {
2511
+ parserOptions: {
2512
+ ecmaFeatures: {
2513
+ jsx: true;
2514
+ };
2515
+ };
2516
+ };
2517
+ rules: {
2518
+ 'jsx-a11y/accessible-emoji': "off";
2519
+ 'jsx-a11y/alt-text': ["error", {
2520
+ elements: string[];
2521
+ img: never[];
2522
+ object: never[];
2523
+ area: never[];
2524
+ 'input[type="image"]': never[];
2525
+ }];
2526
+ 'jsx-a11y/anchor-has-content': ["error", {
2527
+ components: never[];
2528
+ }];
2529
+ 'jsx-a11y/anchor-is-valid': ["error", {
2530
+ components: string[];
2531
+ specialLink: string[];
2532
+ aspects: string[];
2533
+ }];
2534
+ 'jsx-a11y/aria-activedescendant-has-tabindex': "error";
2535
+ 'jsx-a11y/aria-props': "error";
2536
+ 'jsx-a11y/aria-proptypes': "error";
2537
+ 'jsx-a11y/aria-role': ["error", {
2538
+ ignoreNonDOM: boolean;
2539
+ }];
2540
+ 'jsx-a11y/aria-unsupported-elements': "error";
2541
+ 'jsx-a11y/autocomplete-valid': ["off", {
2542
+ inputComponents: never[];
2543
+ }];
2544
+ 'jsx-a11y/click-events-have-key-events': "error";
2545
+ 'jsx-a11y/control-has-associated-label': ["error", {
2546
+ labelAttributes: string[];
2547
+ controlComponents: never[];
2548
+ ignoreElements: string[];
2549
+ ignoreRoles: string[];
2550
+ depth: number;
2551
+ }];
2552
+ 'jsx-a11y/heading-has-content': ["error", {
2553
+ components: string[];
2554
+ }];
2555
+ 'jsx-a11y/html-has-lang': "error";
2556
+ 'jsx-a11y/iframe-has-title': "error";
2557
+ 'jsx-a11y/img-redundant-alt': "error";
2558
+ 'jsx-a11y/interactive-supports-focus': "error";
2559
+ 'jsx-a11y/label-has-associated-control': ["error", {
2560
+ labelComponents: never[];
2561
+ labelAttributes: never[];
2562
+ controlComponents: never[];
2563
+ assert: string;
2564
+ depth: number;
2565
+ }];
2566
+ 'jsx-a11y/lang': "error";
2567
+ 'jsx-a11y/media-has-caption': ["error", {
2568
+ audio: never[];
2569
+ video: never[];
2570
+ track: never[];
2571
+ }];
2572
+ 'jsx-a11y/mouse-events-have-key-events': "error";
2573
+ 'jsx-a11y/no-access-key': "error";
2574
+ 'jsx-a11y/no-autofocus': ["error", {
2575
+ ignoreNonDOM: boolean;
2576
+ }];
2577
+ 'jsx-a11y/no-distracting-elements': ["error", {
2578
+ elements: string[];
2579
+ }];
2580
+ 'jsx-a11y/no-interactive-element-to-noninteractive-role': ["error", {
2581
+ tr: string[];
2582
+ }];
2583
+ 'jsx-a11y/no-noninteractive-element-interactions': ["error", {
2584
+ handlers: string[];
2585
+ }];
2586
+ 'jsx-a11y/no-noninteractive-element-to-interactive-role': ["error", {
2587
+ ul: string[];
2588
+ ol: string[];
2589
+ li: string[];
2590
+ table: string[];
2591
+ td: string[];
2592
+ }];
2593
+ 'jsx-a11y/no-noninteractive-tabindex': ["error", {
2594
+ tags: never[];
2595
+ roles: string[];
2596
+ allowExpressionValues: boolean;
2597
+ }];
2598
+ 'jsx-a11y/no-onchange': "off";
2599
+ 'jsx-a11y/no-redundant-roles': ["error", {
2600
+ nav: string[];
2601
+ }];
2602
+ 'jsx-a11y/no-static-element-interactions': ["error", {
2603
+ handlers: string[];
2604
+ }];
2605
+ 'jsx-a11y/role-has-required-aria-props': "error";
2606
+ 'jsx-a11y/role-supports-aria-props': "error";
2607
+ 'jsx-a11y/scope': "error";
2608
+ 'jsx-a11y/tabindex-no-positive': "error";
2609
+ 'jsx-a11y/label-has-for': ["off", {
2610
+ components: never[];
2611
+ required: {
2612
+ every: string[];
2613
+ };
2614
+ allowChildren: boolean;
2615
+ }];
2616
+ 'jsx-a11y/anchor-ambiguous-text': "off";
2617
+ 'jsx-a11y/no-aria-hidden-on-focusable': "off";
2618
+ 'jsx-a11y/prefer-tag-over-role': "off";
2619
+ };
2620
+ };
2621
+ reactHooks: {
2622
+ name: string;
2623
+ plugins: {
2624
+ 'react-hooks': typeof import("eslint-plugin-react-hooks");
2625
+ };
2626
+ languageOptions: {
2627
+ parserOptions: {
2628
+ ecmaFeatures: {
2629
+ jsx: true;
2630
+ };
2631
+ };
2632
+ };
2633
+ rules: {
2634
+ 'react-hooks/rules-of-hooks': "error";
2635
+ 'react-hooks/exhaustive-deps': "error";
2636
+ };
2637
+ };
2638
+ recommended: any[];
843
2639
  };