Commit 4c26d1d
authored
fix(scan): respect projectIgnorePaths from socket.yml (#1225)
Backport of v1.x #1137 to main. `socket scan create`, `socket scan reach`,
and `socket fix` (coana path) now honor the `projectIgnorePaths` list
from socket.yml when collecting files.
The underlying glob infrastructure (`globWithGitIgnore`) and
`getPackageFilesForScan` already accepted a `config` option on main —
we just weren't feeding socket.yml into it from these three callers.
Changes:
* `handle-create-new-scan.mts`: load socket.yml via `findSocketYmlSync`
and pass through as `config` to `getPackageFilesForScan`.
* `handle-scan-reach.mts`: same.
* `coana-fix.mts`: same.
* `test/unit/commands/fix/handle-fix-limit.test.mts`: mock for
`@socketsecurity/lib/fs` now also returns `safeReadFileSync` since
`findSocketYmlSync` calls it; the no-op returns `undefined` so the
test treats socket.yml as absent.1 parent 35e70d4 commit 4c26d1d
File tree
4 files changed
+29
-0
lines changed- packages/cli
- src/commands
- fix
- scan
- test/unit/commands/fix
4 files changed
+29
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
121 | 122 | | |
122 | 123 | | |
123 | 124 | | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
124 | 132 | | |
| 133 | + | |
125 | 134 | | |
126 | 135 | | |
127 | 136 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| 34 | + | |
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
| |||
149 | 150 | | |
150 | 151 | | |
151 | 152 | | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
152 | 160 | | |
| 161 | + | |
153 | 162 | | |
154 | 163 | | |
155 | 164 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
49 | 50 | | |
50 | 51 | | |
51 | 52 | | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
52 | 60 | | |
| 61 | + | |
53 | 62 | | |
54 | 63 | | |
55 | 64 | | |
| |||
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
| 116 | + | |
| 117 | + | |
116 | 118 | | |
117 | 119 | | |
118 | 120 | | |
| |||
0 commit comments