Skip to content

Commit

Permalink
Merge pull request #635 from ChrisTorng/master
Browse files Browse the repository at this point in the history
Fix JsHintReporter _builtInIgnoreRegex
  • Loading branch information
madskristensen committed Feb 8, 2014
2 parents 7eb19bb + 91621c5 commit b9ad2d5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions EditorExtensions/Commands/JavaScript/JsHintReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ public static bool ShouldIgnore(string file)
@"dojo\.js",
@"ember\.js",
@"ext-core\.js",
@"handlebars.*",
@"handlebars\.*",
@"highlight\.js",
@"history\.js",
@"jquery-([0-9\.]+)\.js",
@"jquery.blockui.*",
@"jquery.validate.*",
@"jquery.unobtrusive.*",
@"jquery\.blockui\.*",
@"jquery\.validate\.*",
@"jquery\.unobtrusive\.*",
@"jquery-ui-([0-9\.]+)\.js",
@"json2\.js",
@"knockout-([0-9\.]+)\.js",
@"MicrosoftAjax([a-z]+)\.js",
@"modernizr-([0-9\.]+)\.js",
@"mustache.*",
@"mustache\.*",
@"prototype\.js ",
@"qunit-([0-9a-z\.]+)\.js",
@"require\.js",
Expand Down

0 comments on commit b9ad2d5

Please sign in to comment.