Skip to content

Commit 9f9fd51

Browse files
committed
chore(psalm): excludes node_modules from Psalm analysis
Excludes the `node_modules` directory from Psalm static analysis. This prevents Psalm from analyzing files within `node_modules`, which are generally not relevant to the project's codebase and can cause irrelevant warnings and errors.
1 parent a3958f1 commit 9f9fd51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

psalm.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<directory name="src" />
1313
<directory name="dist" />
1414
<directory name="config" />
15+
<directory name="node_modules" />
1516
</ignoreFiles>
1617
</projectFiles>
1718

@@ -58,4 +59,4 @@
5859

5960
<InvalidStringClass errorLevel="info" />
6061
</issueHandlers>
61-
</psalm>
62+
</psalm>

0 commit comments

Comments
 (0)