jshint emitter emitter/emitter.js: line 15, col 61, Octal literals are not allowed in strict mode.
1 error
I receive the above message while running the linter jshint on my source code.
The offending line in the program is:
let pattern = new RegExp("^-(?=[gim]{1,3}$)(?!.*(.).*\1).*$");
jshint flags the error at \1 in the regular expression.
Is there any way to be rid of this message from jshint?
You can view the source here