Skip to content

Commit

Permalink
Updates required by updating to latest versions of Uglify and ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
stefangabos committed Aug 3, 2018
1 parent eac664a commit b8cc307
Show file tree
Hide file tree
Showing 3 changed files with 3,199 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Gruntfile.js
Expand Up @@ -69,7 +69,10 @@ module.exports = function(grunt) {
options: { options: {
compress: true, compress: true,
mangle: true, mangle: true,
beautify: false beautify: false,
output: {
ie8: true
}
}, },
build: { build: {
src: 'src/zebra_cookie.src.js', src: 'src/zebra_cookie.src.js',
Expand Down
9 changes: 7 additions & 2 deletions eslint.json
Expand Up @@ -20,7 +20,10 @@
"curly": ["warn", "multi"], "curly": ["warn", "multi"],
"dot-location": ["warn", "property"], "dot-location": ["warn", "property"],
"eol-last": ["warn", "always"], "eol-last": ["warn", "always"],
"indent": ["warn", 4, {"SwitchCase": 1}], "indent": ["warn", 4, {
"SwitchCase": 1,
"ignoreComments": true
}],
"keyword-spacing": ["warn", { "keyword-spacing": ["warn", {
"before": true, "before": true,
"after": true "after": true
Expand Down Expand Up @@ -55,7 +58,9 @@
}], }],
"no-lonely-if": 1, "no-lonely-if": 1,
"no-mixed-spaces-and-tabs": 1, "no-mixed-spaces-and-tabs": 1,
"no-multi-spaces": 1, "no-multi-spaces": ["warn", {
"ignoreEOLComments": true
}],
"no-multiple-empty-lines": ["warn", { "no-multiple-empty-lines": ["warn", {
"max": 1, "max": 1,
"maxEOF": 1, "maxEOF": 1,
Expand Down

0 comments on commit b8cc307

Please sign in to comment.