You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The linter is TypeScript-aware and requires a `tsconfig.json` to determine which files to lint and how to parse them.
53
+
The linter is TypeScript-aware and requires a `tsconfig.json` to determine which
54
+
files to lint and how to parse them.
50
55
51
56
By default:
52
57
@@ -55,7 +60,9 @@ By default:
55
60
56
61
### Working with multiple tsconfigs
57
62
58
-
If your project uses more than one `tsconfig.json` or doesn't have one at the root, you can configure the linter using a `matrixai-lint-config.json` file at the root:
63
+
If your project uses more than one `tsconfig.json` or doesn't have one at the
64
+
root, you can configure the linter using a `matrixai-lint-config.json` file at
65
+
the root:
59
66
60
67
```json
61
68
{
@@ -69,7 +76,8 @@ If your project uses more than one `tsconfig.json` or doesn't have one at the ro
69
76
|`tsconfigPaths`|`string[]`| One or more paths to `tsconfig.json` files |
70
77
|`forceInclude`|`string[]`| Paths to always include, even if excluded by tsconfig (must be included by at least one) |
71
78
72
-
> ⚠ If a path in `forceInclude` is not included in any of the `tsconfigPaths`, TypeScript will throw a parsing error.
79
+
> ⚠ If a path in `forceInclude` is not included in any of the `tsconfigPaths`,
0 commit comments