Skip to content

Commit 4f6d165

Browse files
committed
Merge pull request burnettk#3 from tlvince/refactor/angular-ui
Add angular-ui prefix to syntastic ignores
2 parents 9258bbf + 6cd5d3f commit 4f6d165

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugin/angular.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endif
1717

1818
let g:syntastic_html_tidy_ignore_errors = g:syntastic_html_tidy_ignore_errors + [
1919
\ ' proprietary attribute "ng-',
20-
\ ' proprietary attribute "ui-view',
20+
\ ' proprietary attribute "ui-',
2121
\ '<ng-include> is not recognized!',
2222
\ 'discarding unexpected <ng-include>',
2323
\ 'discarding unexpected </ng-include>',

spec/runspec_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
specify "html tidy syntastic ignores" do
66
value_of_variable = vim.echo('g:syntastic_html_tidy_ignore_errors')
7-
value_of_variable.should eq("[' proprietary attribute \"ng-', ' proprietary attribute \"ui-view', '<ng-include> is not recognized!', 'discarding unexpected <ng-include>', 'discarding unexpected </ng-include>', '<div> proprietary attribute \"src']")
7+
value_of_variable.should eq("[' proprietary attribute \"ng-', ' proprietary attribute \"ui-', '<ng-include> is not recognized!', 'discarding unexpected <ng-include>', 'discarding unexpected </ng-include>', '<div> proprietary attribute \"src']")
88
end
99

1010
specify "command with one spec" do

0 commit comments

Comments
 (0)