syntastic icon indicating copy to clipboard operation
syntastic copied to clipboard

Syntax checking hacks for vim

Results 51 syntastic issues
Sort by recently updated
recently updated
newest added

Smatch is a static analysis tool for C. Most of the checks are for the linux kernel, it uses _sparse_ as a C parser: http://smatch.sourceforge.net/ http://repo.or.cz/w/smatch.git

syntax checkers

In windows, `tsc`, the TypeScript compiler for Node.js, creates the file passed by `--out` argument, even if the file name is `NUL`. This will pass a temporary file name to...

Using: - Windows 7 - python 2.7.5 - gVim 7.4.27 or 7.4.50 - Current version of Syntastic (master HEAD) as of this posting When using `SyntasticCheck python` on a python...

known bugs

I came up with the following to easily toggling type=style and level=warnings messages: ``` fun! SyntasticToggleQuiet(k, v) let idx = index(g:syntastic_quiet_messages[a:k], a:v) if idx == -1 call add(g:syntastic_quiet_messages[a:k], a:v) echom...

If you opend your source in two windows, to see different parts of your code and SynstasticCheck runs, the locationlist does not get updated although g:syntastic_always_populate_loc_list = 1 is specified...

known bugs

Trivial example. In Perl there is standard way to write automated tests for modules. Tests are placed in ./t/*.pl and run while `make test` in special environment which include: -...

syntastic: error: checker output: ansible-lint ^[[1;36m6.15^[[0m^[[1;36m.^[[0m^[[1;36m0^[[0m using ansible ^[[1;36m2.14^[[0m^[[1;36m.^[[0m^[[1;36m1^[[0m syntastic: error: checker ansible/ansible_lint: can't parse version string (abnormal termination?) $ ansible-lint --version ansible-lint 6.15.0 using ansible 2.14.1 $ ansible --version...

[Ruff](https://github.com/charliermarsh/ruff) is an extremely fast Python linter. Currently, it's not usable with Syntastic since there's no checker script for it.

my vimrc ``` " syntastic config set statusline+=%#warningmsg# set statusline+=%{SyntasticStatuslineFlag()} set statusline+=%* let g:syntastic_always_populate_loc_list = 1 let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_loc_list_height = 4 let g:syntastic_cpp_checkers...

Hello! I was using vim to see some source code files in the `PostgreSQL-11-17` directory when I saw that syntastic was giving an error: `parse_cte.c|15 col 10 error| fatal error:...