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.
11 lines
297 B
11 lines
297 B
7 months ago
|
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,
|
||
|
];
|