From 0fe772cfe9fa257e6674d04349cf5b82ff31939e Mon Sep 17 00:00:00 2001 From: Tomas Bjerre Date: Sat, 3 Aug 2019 14:13:30 +0200 Subject: [PATCH] Changing name of JSHINT parser to JSLINT --- .travis.yml | 3 ++- README.md | 4 +++- build.gradle | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8f5312e..0c78d9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ sudo: false language: java jdk: - - oraclejdk8 + - openjdk8 + - openjdk11 script: - ./gradlew build --stacktrace -i after_script: diff --git a/README.md b/README.md index c9c2851..2d000c1 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,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` | @@ -104,7 +105,8 @@ 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` | | [_KotlinGradle_](https://github.com/JetBrains/kotlin) | `KOTLINGRADLE` | Output from Kotlin Gradle Plugin. diff --git a/build.gradle b/build.gradle index 85d8c13..d304236 100644 --- a/build.gradle +++ b/build.gradle @@ -27,7 +27,7 @@ apply from: project.buildscript.classLoader.getResource('violations.gradle').toU dependencies { - compile 'se.bjurr.violations:violations-git-lib:1.21' + compile 'se.bjurr.violations:violations-git-lib:1.22' compile 'se.softhouse:jargo:0.1.1' compile 'org.slf4j:slf4j-simple:1.8.0-beta2' testCompile 'junit:junit:4.12'