Remove PHP warnings for functions that are too complex/long

This commit is contained in:
Kevin MacMartin 2015-11-04 16:53:45 -05:00
parent 27af5f385b
commit 8ebaa19ab7

View file

@ -219,7 +219,10 @@ scriptencoding utf-8
let g:syntastic_php_phpmd_quiet_messages={
\ 'regex':[
\ 'Avoid using short method names like.*',
\ 'Avoid variables with short names like.*'
\ 'Avoid variables with short names like.*',
\ 'The method.*has a Cyclomatic Complexity.*',
\ 'The method.*has an NPath complexity.*',
\ 'The method.*has [0-9][0-9]* lines of code.*'
\ ]}
let g:syntastic_sh_bashate_quiet_messages={
\ 'regex':[