Commit 68e5439c authored by Jérome Perrin's avatar Jérome Perrin

jslint: do not bother developers with long lines

parent 9d57e757
...@@ -29,7 +29,7 @@ module.exports = function (grunt) { ...@@ -29,7 +29,7 @@ module.exports = function (grunt) {
config: { config: {
src: ['package.json', 'Gruntfile.js'], src: ['package.json', 'Gruntfile.js'],
directives: { directives: {
maxlen: 120, maxlen: Infinity,
indent: 2, indent: 2,
maxerr: 3, maxerr: 3,
predef: [ predef: [
...@@ -40,7 +40,7 @@ module.exports = function (grunt) { ...@@ -40,7 +40,7 @@ module.exports = function (grunt) {
gadget: { gadget: {
src: ["<%= global_config.src %>/**/*.js"], src: ["<%= global_config.src %>/**/*.js"],
directives: { directives: {
maxlen: 79, maxlen: Infinity,
indent: 2, indent: 2,
maxerr: 5, maxerr: 5,
todo: true, todo: true,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment