mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -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.*',
|
||||
\ '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={
|
||||
\ 'regex':[
|
||||
\ '.*\[W293\]',
|
||||
|
|
Loading…
Reference in a new issue