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
Excludes a portion of source files during detection. You can pass in one or more regular expressions to match the paths of source files. Files that match the regular expression will be ignored and will not trigger syntax checking.
@@ -181,9 +187,33 @@ pluginCheckSyntax({
181
187
});
182
188
```
183
189
190
+
Or pass in a function to match the paths of source files. Files that return true when the function is called will be ignored:
Excludes a portion of output files before detection. You can pass in one or more regular expressions to match the paths of output files. Files that match the regular expression will be ignored and will not trigger syntax checking.
0 commit comments