diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | ale_linters/cpp/gcc.vim | 23 | ||||
-rw-r--r-- | ale_linters/verilog/iverilog.vim | 48 | ||||
-rw-r--r-- | ale_linters/verilog/verilator.vim | 50 | ||||
-rw-r--r-- | doc/ale.txt | 13 | ||||
-rw-r--r-- | plugin/ale/zmain.vim | 7 |
6 files changed, 143 insertions, 0 deletions
@@ -29,6 +29,7 @@ name. That seems to be the fairest way to arrange this table. | Bash | [-n flag](https://www.gnu.org/software/bash/manual/bash.html#index-set), [shellcheck](https://www.shellcheck.net/) | | Bourne Shell | [-n flag](http://linux.die.net/man/1/sh), [shellcheck](https://www.shellcheck.net/) | | C | [gcc](https://gcc.gnu.org/) | +| C++ (filetype cpp)| [gcc](https://gcc.gnu.org/) | | CoffeeScript | [coffeelint](https://www.npmjs.com/package/coffeelint) | | CSS | [csslint](http://csslint.net/) | | Cython (pyrex filetype) | [cython](http://cython.org/) | @@ -46,6 +47,7 @@ name. That seems to be the fairest way to arrange this table. | SCSS | [sass-lint](https://www.npmjs.com/package/sass-lint), [scss-lint](https://github.com/brigade/scss-lint) | | Scala | [scalac](http://scala-lang.org) | | TypeScript | [tslint](https://github.com/palantir/tslint) | +| Verilog | [iverilog](https://github.com/steveicarus/iverilog), [verilator](http://www.veripool.org/projects/verilator/wiki/Intro) | | Vim | [vint](https://github.com/Kuniwak/vint) | | YAML | [yamllint](https://yamllint.readthedocs.io/) | diff --git a/ale_linters/cpp/gcc.vim b/ale_linters/cpp/gcc.vim new file mode 100644 index 00000000..31c3c245 --- /dev/null +++ b/ale_linters/cpp/gcc.vim @@ -0,0 +1,23 @@ +" Author: geam <mdelage@student.42.fr> +" Description: gcc linter for cpp files + +if exists('g:loaded_ale_linters_cpp_gcc') + finish +endif + +let g:loaded_ale_linters_cpp_gcc = 1 + +" Set this option to change the GCC options for warnings for C. +if !exists('g:ale_cpp_gcc_options') + let g:ale_cpp_gcc_options = '-Wall' +endif + +call ALEAddLinter('cpp', { +\ 'name': 'gcc', +\ 'output_stream': 'stderr', +\ 'executable': 'gcc', +\ 'command': 'gcc -S -x c++ -fsyntax-only ' +\ . g:ale_cpp_gcc_options +\ . ' -', +\ 'callback': 'ale#handlers#HandleGCCFormat', +\}) diff --git a/ale_linters/verilog/iverilog.vim b/ale_linters/verilog/iverilog.vim new file mode 100644 index 00000000..f8ea1784 --- /dev/null +++ b/ale_linters/verilog/iverilog.vim @@ -0,0 +1,48 @@ +if exists('g:loaded_ale_linters_verilog_iverilog') + finish +endif + +let g:loaded_ale_linters_verilog_iverilog = 1 + +function! ale_linters#verilog#iverilog#Handle(buffer, lines) + " Look for lines like the following. + " + " tb_me_top.v:37: warning: Instantiating module me_top with dangling input port 1 (rst_n) floating. + " tb_me_top.v:17: syntax error + " memory_single_port.v:2: syntax error + " tb_me_top.v:17: error: Invalid module instantiation + let pattern = '^[^:]\+:\(\d\+\): \(warning\|error\|syntax error\)\(: \(.\+\)\)\?' + let output = [] + + for line in a:lines + let l:match = matchlist(line, pattern) + + if len(l:match) == 0 + continue + endif + + let line = l:match[1] + 0 + let type = l:match[2] ==# 'warning' ? 'W' : 'E' + let text = l:match[2] ==# 'syntax error' ? 'syntax error' : l:match[4] + + call add(output, { + \ 'bufnr': a:buffer, + \ 'lnum': line, + \ 'vcol': 0, + \ 'col': 1, + \ 'text': text, + \ 'type': type, + \ 'nr': -1, + \}) + endfor + + return output +endfunction + +call ALEAddLinter('verilog', { +\ 'name': 'iverilog', +\ 'output_stream': 'stderr', +\ 'executable': 'iverilog', +\ 'command': g:ale#util#stdin_wrapper . ' .v iverilog -t null -Wall', +\ 'callback': 'ale_linters#verilog#iverilog#Handle', +\}) diff --git a/ale_linters/verilog/verilator.vim b/ale_linters/verilog/verilator.vim new file mode 100644 index 00000000..ef0c6b3c --- /dev/null +++ b/ale_linters/verilog/verilator.vim @@ -0,0 +1,50 @@ +if exists('g:loaded_ale_linters_verilog_verilator') + finish +endif + +let g:loaded_ale_linters_verilog_verilator = 1 + +function! ale_linters#verilog#verilator#Handle(buffer, lines) + " Look for lines like the following. + " + " %Error: addr_gen.v:3: syntax error, unexpected IDENTIFIER + " %Warning-WIDTH: addr_gen.v:26: Operator ASSIGNDLY expects 12 bits on the Assign RHS, but Assign RHS's CONST '20'h0' generates 20 bits. + " %Warning-UNUSED: test.v:3: Signal is not used: a + " %Warning-UNDRIVEN: test.v:3: Signal is not driven: clk + " %Warning-UNUSED: test.v:4: Signal is not used: dout + " %Warning-BLKSEQ: test.v:10: Blocking assignments (=) in sequential (flop or latch) block; suggest delayed assignments (<=). + let pattern = '^%\(Warning\|Error\)[^:]*:[^:]\+:\(\d\+\): \(.\+\)$' + let output = [] + + for line in a:lines + let l:match = matchlist(line, pattern) + + if len(l:match) == 0 + continue + endif + + let line = l:match[2] + 0 + let type = l:match[1] ==# 'Error' ? 'E' : 'W' + let text = l:match[3] + + call add(output, { + \ 'bufnr': a:buffer, + \ 'lnum': line, + \ 'vcol': 0, + \ 'col': 1, + \ 'text': text, + \ 'type': type, + \ 'nr': -1, + \}) + endfor + + return output +endfunction + +call ALEAddLinter('verilog', { +\ 'name': 'verilator', +\ 'output_stream': 'stderr', +\ 'executable': 'verilator', +\ 'command': g:ale#util#stdin_wrapper . ' .v verilator --lint-only -Wall -Wno-DECLFILENAME', +\ 'callback': 'ale_linters#verilog#verilator#Handle', +\}) diff --git a/doc/ale.txt b/doc/ale.txt index 4eae226f..70eb1825 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -13,6 +13,7 @@ CONTENTS *ale-contents* 4.1. eslint.....................................|ale-linter-options-eslint| 4.2. phpcs......................................|ale-linter-options-phpcs| 4.3. c-gcc......................................|ale-linter-options-c-gcc| + 4.4. cpp-gcc....................................|ale-linter-options-cpp-gcc| 5. API............................................|ale-api| 6. Contact........................................|ale-contact| @@ -42,6 +43,7 @@ The following languages and tools are supported. * Bash: 'shell' (-n flag), 'shellcheck' * Bourne Shell: 'shell' (-n flag), 'shellcheck' * C: 'gcc' +* C++ (filetype cpp): 'gcc' * CoffeeScript: 'coffelint' * CSS: 'csslint' * Cython (pyrex filetype): 'cython' @@ -59,6 +61,7 @@ The following languages and tools are supported. * SCSS: 'sasslint', 'scsslint' * Scala: 'scalac' * TypeScript: 'tslint' +* Verilog: 'iverilog', 'verilator' * Vim: 'vint' * YAML: 'yamllint' @@ -273,6 +276,16 @@ Default: `'-Wall'` This variable can be change to modify flags given to gcc. +------------------------------------------------------------------------------- +4.4. cpp-gcc *ale-linter-options-cpp-gcc* + +g:ale_cpp_gcc_options *g:ale_cpp_gcc_options* + +Type: |String| +Default: `'-Wall'` + +This variable can be changed to modify flags given to gcc. + =============================================================================== 5. API *ale-api* diff --git a/plugin/ale/zmain.vim b/plugin/ale/zmain.vim index 8db9d8f7..cc70ff04 100644 --- a/plugin/ale/zmain.vim +++ b/plugin/ale/zmain.vim @@ -216,6 +216,13 @@ function! s:ApplyLinter(buffer, linter) let job_options.out_cb = function('s:GatherOutputVim') endif + if has('win32') + " job_start commands on Windows have to be run with cmd /c, + " othwerwise %PATHTEXT% will not be used to programs ending int + " .cmd, .bat, .exe, etc. + let l:command = 'cmd /c ' . l:command + endif + " Vim 8 will read the stdin from the file's buffer. let a:linter.job = job_start(l:command, l:job_options) endif |