Use eslint 3.2.0
Note the update required disabling the "no-control-regex" rule, which started reporting following errors: /Users/dmajda/Programming/PEG.js/pegjs/lib/compiler/js.js 22:16 error Unexpected control character in regular expression no-control-regex 27:16 error Unexpected control character in regular expression no-control-regex 28:16 error Unexpected control character in regular expression no-control-regex 51:16 error Unexpected control character in regular expression no-control-regex 52:16 error Unexpected control character in regular expression no-control-regex /Users/dmajda/Programming/PEG.js/pegjs/lib/parser.js 76:16 error Unexpected control character in regular expression no-control-regex 77:16 error Unexpected control character in regular expression no-control-regex 90:16 error Unexpected control character in regular expression no-control-regex 91:16 error Unexpected control character in regular expression no-control-regexredux
parent
e6c3e7180f
commit
a8d01e1834
@ -1,3 +1,6 @@
|
||||
{
|
||||
"extends": "eslint:recommended"
|
||||
"extends": "eslint:recommended",
|
||||
"rules": {
|
||||
"no-control-regex": "off"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue