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
Copy file name to clipboardExpand all lines: docs/rules/no-unresolved.md
+16
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,22 @@ By default, this rule will report paths whose case do not match the underlying f
76
76
const { default:x } =require('./foo') // reported if './foo' is actually './Foo' and caseSensitive: true
77
77
```
78
78
79
+
#### `caseSensitiveStrict`
80
+
81
+
`caseSensitive` option does not detect case for current working derectory, `caseSensitiveStrict` option allows to check `cwd` in resolved path. By default, the options is disabled.
0 commit comments