diff options
| author | Peter Lithammer <peter.lithammer@gmail.com> | 2021-11-15 10:18:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-15 01:18:53 -0800 |
| commit | 9910bd69fa99905e7cd54c49e293ddacae3650ae (patch) | |
| tree | 6d7370b7371cdc4d35c1396ac94447cc3333133d /.github/workflows/problem_matchers | |
| parent | chore: clean up unused function args (#1426) (diff) | |
| download | nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.tar nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.tar.gz nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.tar.bz2 nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.tar.lz nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.tar.xz nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.tar.zst nvim-lspconfig-9910bd69fa99905e7cd54c49e293ddacae3650ae.zip | |
ci: add Selene linter (#904)
* see https://github.com/Kampfkarren/selene
Diffstat (limited to '.github/workflows/problem_matchers')
| -rw-r--r-- | .github/workflows/problem_matchers/selene.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/problem_matchers/selene.json b/.github/workflows/problem_matchers/selene.json new file mode 100644 index 00000000..4bbf24f3 --- /dev/null +++ b/.github/workflows/problem_matchers/selene.json @@ -0,0 +1,30 @@ +{ + "problemMatcher": [ + { + "owner": "selene-error", + "severity": "error", + "pattern": [ + { + "regexp": "^([^:]+):(\\d+):(\\d+):\\serror(.*)$", + "file": 1, + "line": 2, + "column": 3, + "message": 4 + } + ] + }, + { + "owner": "selene-warning", + "severity": "warning", + "pattern": [ + { + "regexp": "^([^:]+):(\\d+):(\\d+):\\swarning(.*)$", + "file": 1, + "line": 2, + "column": 3, + "message": 4 + } + ] + } + ] +} |
