Update lint to ignore comments

This commit is contained in:
Adrian Obelmejias
2016-03-05 00:05:09 -05:00
parent 67455677d7
commit 8e97911d4e
+2 -1
View File
@@ -8,7 +8,8 @@
"semi": [2, "never"],
"no-param-reassign": [2, { "props": false }],
"strict": 0,
"comma-dangle": [2, "never"]
"comma-dangle": [2, "never"],
"max-len": [2, 80, 2, { "ignoreComments": true }]
},
"env": {
"node": true,