Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GreLI committed Aug 25, 2016
1 parent cf20f5c commit c6f77d9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
55 changes: 28 additions & 27 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
{
"globals": {
"phantom": false,
"describe": false,
"before": false,
"it": false
},
"node": true,
"strict": "global",
"expr": true,
"curly": false,
"camelcase": true,
"eqeqeq": false,
"-W041": false,
"-W008": false,
"forin": false,
"immed": true,
"multistr": true,
"newcap": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"unused": true,
"loopfunc": true,
"trailing": true,
"lastsemic": true
}
{
"globals": {
"phantom": false,
"describe": false,
"before": false,
"it": false
},
"node": true,
"strict": "global",
"expr": true,
"curly": false,
"camelcase": true,
"eqeqeq": false,
"-W041": false,
"-W008": false,
"forin": false,
"immed": true,
"multistr": true,
"newcap": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"unused": true,
"loopfunc": true,
"trailing": true,
"lastsemic": true,
"esversion": 6
}
1 change: 0 additions & 1 deletion plugins/cleanupIDs.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ exports.fn = function(data, params) {
currentIDstring,
IDs = new Map(),
referencesIDs = new Map(),
idPrefix = 'id-', // prefix IDs so that values like '__proto__' don't break the work
hasStyleOrScript = false;

/**
Expand Down

0 comments on commit c6f77d9

Please sign in to comment.