We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 892376e + c259e22 commit d2c66a8Copy full SHA for d2c66a8
2 files changed
plugin/angular.vim
@@ -17,10 +17,7 @@ if !exists('g:syntastic_html_tidy_ignore_errors')
17
endif
18
19
let g:syntastic_html_tidy_ignore_errors += [
20
- \ ' proprietary attribute "ng-',
21
- \ ' proprietary attribute "ui-',
22
- \ ' proprietary attribute "src"',
23
- \ ' proprietary attribute "on"',
+ \ '> proprietary attribute "',
24
\ 'trimming empty <'
25
\ ]
26
spec/runspec_spec.rb
@@ -5,10 +5,7 @@
5
specify "html tidy syntastic ignores" do
6
value_of_variable = vim.echo('g:syntastic_html_tidy_ignore_errors')
7
value_of_variable.should include(
8
- ' proprietary attribute "ng-',
9
- ' proprietary attribute "ui-',
10
- ' proprietary attribute "src"',
11
- ' proprietary attribute "on"',
+ '> proprietary attribute "',
12
'trimming empty <'
13
)
14
end
0 commit comments