forked from nvuillam/npm-groovy-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix files specified on the command line not linting as expected due to the generated patterns not working as intended if relative path that contains a file and not a directory due to an issue with CodeNarc pattern processing. Fix incompatible arguments passed to CodeNarc by: * Using arrays internally to avoid issues with spaces in arguments being interpreted incorrectly. * Stripping all quotes from string arguments as CodeNarc doesn't handle them correctly. * Enable automatic argument quoting on Windows. Fix command line -ext extensions not being processed correctly and matching too many files as it was missing the prefix. Ensure readFile and writeFile calls produce a stack trace on failure due to: nodejs/node#30944. Fix file delete race condition and variable clean up due to missing await. Fix use of includes instead of exclude parameters. Also: * Fixed Request failed logging * Fix README.md typo * Add additional useful debug logging * Run dev:pre-commit to update CHANGELOG.md * Add more cspell entries * Add missing items to CodeNarcServer.groovy usage * Re-enable tests which are now fixed * Override axios for security patch
- Loading branch information
Showing
19 changed files
with
406 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Manifest-Version: 1.0 | ||
Class-Path: CodeNarc-3.1.0.jar GMetrics-2.1.0.jar groovy/lib/ant-1.10. | ||
11.jar groovy/lib/ant-launcher-1.10.11.jar groovy/lib/commons-cli-1.4 | ||
.jar groovy/lib/groovy-3.0.9.jar groovy/lib/groovy-ant-3.0.9.jar groo | ||
vy/lib/groovy-cli-commons-3.0.9.jar groovy/lib/groovy-dateutil-3.0.9. | ||
jar groovy/lib/groovy-json-3.0.9.jar groovy/lib/groovy-templates-3.0. | ||
9.jar groovy/lib/groovy-xml-3.0.9.jar logback-classic-1.4.9.jar logba | ||
ck-core-1.4.9.jar slf4j-api-2.0.9.jar | ||
Class-Path: CodeNarc-3.4.0-alpha+3346775f.jar GMetrics-2.1.0.jar groov | ||
y/lib/ant-1.10.11.jar groovy/lib/ant-launcher-1.10.11.jar groovy/lib/ | ||
commons-cli-1.4.jar groovy/lib/groovy-3.0.9.jar groovy/lib/groovy-ant | ||
-3.0.9.jar groovy/lib/groovy-cli-commons-3.0.9.jar groovy/lib/groovy- | ||
dateutil-3.0.9.jar groovy/lib/groovy-json-3.0.9.jar groovy/lib/groovy | ||
-templates-3.0.9.jar groovy/lib/groovy-xml-3.0.9.jar logback-classic- | ||
1.4.9.jar logback-core-1.4.9.jar slf4j-api-2.0.9.jar | ||
Created-By: 1.8.0_144 (Oracle Corporation) | ||
Main-Class: com.nvuillam.CodeNarcServer |
Oops, something went wrong.