array-comparisoncomparisoncomparison-tooldeep-diffdiffjson-diffnodejsobject-comparisonobject-diffobjectdiffobjectdifferencereactstreamingstreaming-datatypescript
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
import pluginJs from "@eslint/js"; |
|
import tseslint from "typescript-eslint"; |
|
|
|
export default [ |
|
{ files: ["**/*.{js,mjs,cjs,ts}"] }, |
|
{ ignores: ["dist", "jest.config.js"] }, |
|
{ settings: { react: { version: "detect" } } }, |
|
pluginJs.configs.recommended, |
|
...tseslint.configs.recommended, |
|
{ |
|
rules: { |
|
"@typescript-eslint/no-explicit-any": "off", |
|
"@typescript-eslint/ban-ts-comment": "off" |
|
}, |
|
}, |
|
];
|
|
|