Skip to content

Commit d2c66a8

Browse files
committed
Merge pull request burnettk#12 from codebeige/allow_all_kinds_of_proprietary_attributes
Do not warn on proprietary attributes
2 parents 892376e + c259e22 commit d2c66a8

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

plugin/angular.vim

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ if !exists('g:syntastic_html_tidy_ignore_errors')
1717
endif
1818

1919
let g:syntastic_html_tidy_ignore_errors += [
20-
\ ' proprietary attribute "ng-',
21-
\ ' proprietary attribute "ui-',
22-
\ ' proprietary attribute "src"',
23-
\ ' proprietary attribute "on"',
20+
\ '> proprietary attribute "',
2421
\ 'trimming empty <'
2522
\ ]
2623

spec/runspec_spec.rb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
specify "html tidy syntastic ignores" do
66
value_of_variable = vim.echo('g:syntastic_html_tidy_ignore_errors')
77
value_of_variable.should include(
8-
' proprietary attribute "ng-',
9-
' proprietary attribute "ui-',
10-
' proprietary attribute "src"',
11-
' proprietary attribute "on"',
8+
'> proprietary attribute "',
129
'trimming empty <'
1310
)
1411
end

0 commit comments

Comments
 (0)