Stop ESLint warnings

- about use of eval
- whitespace before comments
master
Futago-za Ryuu 6 years ago
parent b92690392e
commit 60f69d6558

@ -6,6 +6,7 @@ module.exports = {
"root": true, "root": true,
"rules": { "rules": {
"no-eval": 0,
"prefer-rest-params": 0, "prefer-rest-params": 0,
}, },

@ -800,13 +800,11 @@ describe( "PEG.js grammar parser", function () {
expect( "start = '\\a'" ).to.parseAs( literalGrammar( "a", false ) ); expect( "start = '\\a'" ).to.parseAs( literalGrammar( "a", false ) );
// The negative predicate is impossible to test with PEG.js grammar
// structure.
} ); } );
// The EscapeCharacter rule is impossible to test with PEG.js grammar // The negative predicate is impossible to test with PEG.js grammar structure.
// structure.
// The EscapeCharacter rule is impossible to test with PEG.js grammar structure.
// Canonical HexEscapeSequence is "xFF". // Canonical HexEscapeSequence is "xFF".
it( "parses HexEscapeSequence", function () { it( "parses HexEscapeSequence", function () {

Loading…
Cancel
Save