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.
10 lines
297 B
10 lines
297 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, |
|
];
|
|
|