From ac1108d78f59c74ecd2b842320d8c0a26282070c Mon Sep 17 00:00:00 2001 From: Tomas Bjerre Date: Mon, 16 Jan 2023 18:59:25 +0100 Subject: [PATCH] feat: ansible-later parser --- README.md | 3 ++- build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index deaeafc..b23f944 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,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` | +| [_Ansible-Later_](https://github.com/thegeeklab/ansible-later) | `ANSIBLELATER` | With `json` format | [_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` | @@ -206,7 +207,7 @@ A number of **parsers** have been implemented. Some **parsers** can parse output | [_YAMLLint_](https://yamllint.readthedocs.io/en/stable/index.html) | `YAMLLINT` | With `-f parsable` | [_ZPTLint_](https://pypi.python.org/pypi/zptlint) | `ZPTLINT` | -49 parsers and 75 reporters. +50 parsers and 76 reporters. Missing a format? Open an issue [here](https://github.com/tomasbjerre/violations-lib/issues)! diff --git a/build.gradle b/build.gradle index 004ae74..7470240 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ apply from: project.buildscript.classLoader.getResource('main.gradle').toURI() dependencies { - api 'se.bjurr.violations:violations-git-lib:1.47.7' + api 'se.bjurr.violations:violations-git-lib:1.48.0' api 'se.softhouse:jargo:0.4.14' api 'org.slf4j:slf4j-simple:2.0.6' testImplementation 'junit:junit:4.13.2'