From 05afa60cb9ca692d239c656f527b64215bf0b39a Mon Sep 17 00:00:00 2001 From: Tomas Bjerre Date: Sat, 3 Aug 2019 13:10:30 +0200 Subject: [PATCH] Changing name of JSHINT parser to JSLINT --- README.md | 3 ++- build.gradle | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ffcef9c..c0f06d9 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_ARM-GCC_](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm) | `CLANG` | | [_AndroidLint_](http://developer.android.com/tools/help/lint.html) | `ANDROIDLINT` | | [_AnsibleLint_](https://github.com/willthames/ansible-lint) | `FLAKE8` | With `-p` +| [_Bandit_](https://github.com/PyCQA/bandit) | `CLANG` | With `bandit -r examples/ -f custom -o bandit.out --msg-template "{abspath}:{line}: {severity}: {test_id}: {msg}"` | [_CLang_](https://clang-analyzer.llvm.org/) | `CLANG` | | [_CPD_](http://pmd.sourceforge.net/pmd-4.3.0/cpd.html) | `CPD` | | [_CPPCheck_](http://cppcheck.sourceforge.net/) | `CPPCHECK` | @@ -78,7 +79,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_IAR_](https://www.iar.com/iar-embedded-workbench/) | `IAR` | With `--no_wrap_diagnostics` | [_Infer_](http://fbinfer.com/) | `PMD` | Facebook Infer. With `--pmd-xml`. | [_JCReport_](https://github.com/jCoderZ/fawkez/wiki/JcReport) | `JCREPORT` | -| [_JSHint_](http://jshint.com/) | `JSHINT` | +| [_JSHint_](http://jshint.com/) | `JSLINT` | With `--reporter=jslint` or the CHECKSTYLE parser with `--reporter=checkstyle` | [_JUnit_](https://junit.org/junit4/) | `JUNIT` | | [_KTLint_](https://github.com/shyiko/ktlint) | `CHECKSTYLE` | | [_Klocwork_](http://www.klocwork.com/products-services/klocwork/static-code-analysis) | `KLOCWORK` | diff --git a/build.gradle b/build.gradle index a0458dd..0127826 100644 --- a/build.gradle +++ b/build.gradle @@ -28,6 +28,7 @@ apply from: project.buildscript.classLoader.getResource('violations.gradle').toU dependencies { compile 'se.bjurr.violations:violation-comments-to-bitbucket-cloud-lib:1.11' + compile 'se.bjurr.violations:violations-lib:1.96' compile 'se.softhouse:jargo:0.1.1' compile 'org.slf4j:slf4j-simple:1.8.0-beta2' }