mirror of
https://github.com/prurigro/darkcloud-vimconfig.git
synced 2024-11-22 14:44:11 -05:00
Add syntastic quiet messages for a number of javascript checker calls
This commit is contained in:
parent
68c54c0813
commit
22181ce9ce
1 changed files with 11 additions and 0 deletions
|
@ -194,6 +194,17 @@ scriptencoding utf-8
|
||||||
\ 'method does not override or implement a method from a supertype.*',
|
\ 'method does not override or implement a method from a supertype.*',
|
||||||
\ 'package [^\ ]* does not exist.*'
|
\ 'package [^\ ]* does not exist.*'
|
||||||
\ ]}
|
\ ]}
|
||||||
|
let g:syntastic_javascript_eslint_quiet_messages={
|
||||||
|
\ 'regex':[
|
||||||
|
\ '.* is defined but never used',
|
||||||
|
\ "'[^']*' is not defined",
|
||||||
|
\ 'Missing "use strict" statement'
|
||||||
|
\ ]}
|
||||||
|
let g:syntastic_javascript_standard_quiet_messages={
|
||||||
|
\ 'regex':[
|
||||||
|
\ '.* is defined but never used',
|
||||||
|
\ "'[^']*' is not defined"
|
||||||
|
\ ]}
|
||||||
let g:syntastic_python_flake8_quiet_messages={
|
let g:syntastic_python_flake8_quiet_messages={
|
||||||
\ 'regex':[
|
\ 'regex':[
|
||||||
\ '.*\[W293\]',
|
\ '.*\[W293\]',
|
||||||
|
|
Loading…
Reference in a new issue