File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed
Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 2424 },
2525 "project": "tsconfig.eslint.json"
2626 },
27- "plugins": ["deprecation", "@typescript-eslint"],
27+ "plugins": [
28+ "deprecation",
29+ "@typescript-eslint"
30+ ],
2831 "rules": {
2932 "deprecation/deprecation": "warn",
3033 "no-console": "error",
31- "curly": ["error", "all"],
34+ "curly": [
35+ "error",
36+ "all"
37+ ],
3238 "no-underscore-dangle": "off",
33- "import/no-extraneous-dependencies": "off",
3439 "import/prefer-default-export": "off",
3540 "react/prop-types": "off",
3641 "react/jsx-props-no-spreading": "off",
3742 "react/jsx-key": "error",
3843 "react/jsx-filename-extension": [
3944 "error",
4045 {
41- "extensions": [".js", ".tsx"]
46+ "extensions": [
47+ ".js",
48+ ".tsx"
49+ ]
4250 }
4351 ],
4452 "react/function-component-definition": [
6472 }
6573 }
6674 ]
67- },
68- "overrides": [
69- {
70- "files": ["src/**/*.{ts,tsx}"],
71- "rules": {
72- "import/no-extraneous-dependencies": "error"
73- }
74- }
75- ]
75+ }
7676}
Original file line number Diff line number Diff line change 1+ /* eslint-disable import/no-extraneous-dependencies */
12import { defineConfig } from "tsup" ;
23
34export default defineConfig ( {
You can’t perform that action at this time.
0 commit comments