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: SPEC.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ These are covered in detail below.
27
27
28
28
### Which files to analyze
29
29
30
-
`include_paths` in `/config.json` contains an Array of file paths and directory paths (relative to the `/code` directory) that defines the range of files that the engine can analyze. Directories will end with a trailing slash. For example:
30
+
`include_paths` in `/config.json` contains an array of file paths and directory paths (relative to the `/code` directory) that defines the range of files that the engine can analyze. Directories will end with a trailing slash. For example:
31
31
32
32
```json
33
33
{
@@ -39,9 +39,9 @@ These are covered in detail below.
39
39
}
40
40
```
41
41
42
-
`include_paths` may include paths to files that are irrelevant to the analysis (i.e., `.gitignore` if the engine analyzes Javascript). It is recommended that the engine filters out irrelevant files as opposed to passing them to the analysis library.
42
+
`include_paths` may include paths to files that are irrelevant to the analysis (i.e., `.gitignore` if the engine analyzes JavaScript). It is recommended that the engine filters out irrelevant files as opposed to passing them to the analysis library.
43
43
44
-
`exclude_paths` is deprecated in favor of `include_paths`. `exclude_paths` is an Array of file paths (relative to the `/code` directory) that should be ignored for the purposes of analysis. No Issues should be emitted for excluded files.
44
+
`exclude_paths` is deprecated in favor of `include_paths`. `exclude_paths` is an array of file paths (relative to the `/code` directory) that should be ignored for the purposes of analysis. No Issues should be emitted for excluded files.
0 commit comments