File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,17 +16,18 @@ if !exists('g:syntastic_html_tidy_ignore_errors')
1616 let g: syntastic_html_tidy_ignore_errors = []
1717endif
1818
19- let g: syntastic_html_tidy_ignore_errors = g: syntastic_html_tidy_ignore_errors + [
19+ let g: syntastic_html_tidy_ignore_errors += [
2020 \ ' proprietary attribute "ng-' ,
2121 \ ' proprietary attribute "ui-' ,
22- \ ' <div> proprietary attribute "src'
22+ \ ' <div> proprietary attribute "src' ,
23+ \ ' trimming empty <select>'
2324 \ ]
2425
2526if ! exists (' g:syntastic_html_tidy_blocklevel_tags' )
2627 let g: syntastic_html_tidy_blocklevel_tags = []
2728endif
2829
29- let g: syntastic_html_tidy_blocklevel_tags = g: syntastic_html_tidy_blocklevel_tags + [
30+ let g: syntastic_html_tidy_blocklevel_tags += [
3031 \ ' ng-include' ,
3132 \ ' ng-form'
3233 \ ]
@@ -35,7 +36,7 @@ if !exists('g:angular_find_ignore')
3536 let g: angular_find_ignore = []
3637endif
3738
38- let g: angular_find_ignore = g: angular_find_ignore + [
39+ let g: angular_find_ignore += [
3940 \ ' coverage/' ,
4041 \ ' build/' ,
4142 \ ' dist/' ,
Original file line number Diff line number Diff line change 77 value_of_variable . should include (
88 ' proprietary attribute "ng-' ,
99 ' proprietary attribute "ui-' ,
10- '<div> proprietary attribute "src'
10+ '<div> proprietary attribute "src' ,
11+ 'trimming empty <select>'
1112 )
1213 end
1314
You can’t perform that action at this time.
0 commit comments