File tree Expand file tree Collapse file tree 4 files changed +16
-18
lines changed Expand file tree Collapse file tree 4 files changed +16
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 30
30
"no-console": "error",
31
31
"no-unused-vars": 0,
32
32
"require-await": 0,
33
-
34
33
"react/jsx-indent": 0,
35
34
"react/jsx-indent-props": 0,
36
35
"react/prop-types": 0,
37
-
38
36
"@typescript-eslint/consistent-type-imports": "warn",
39
37
"@typescript-eslint/explicit-function-return-type": "warn",
38
+ "@typescript-eslint/no-non-null-assertion": "warn",
40
39
"@typescript-eslint/no-shadow": "warn",
41
40
"@typescript-eslint/no-unused-vars": [
42
41
"error",
46
45
"varsIgnorePattern": "^__"
47
46
}
48
47
]
49
- }
48
+ },
49
+ "ignorePatterns": [
50
+ "*.log",
51
+ "*.md",
52
+ "*.mdx",
53
+ "node_modules/",
54
+ "dist/",
55
+ "coverage/",
56
+ ".nyc_output/",
57
+ ".pnpm-store/",
58
+ "pnpm-lock.yaml",
59
+ "storybook-static/",
60
+ ".next/",
61
+ "docs/storybook/src/"
62
+ ]
50
63
}
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ node_modules
5
5
* .tgz
6
6
dist
7
7
coverage
8
- * .ignore
9
8
.pnpm-store /
10
9
storybook-static
11
10
docs /storybook /src
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ node_modules/
5
5
dist /
6
6
coverage /
7
7
.nyc_output /
8
- * .ignore
9
8
.pnpm-store /
10
9
pnpm-lock.yaml
11
10
storybook-static /
You can’t perform that action at this time.
0 commit comments