pegjs/.eslintrc.js
Futago-za Ryuu 5dfb6b14dc Update eslint config
I removed "linebreak-style"  because it is now enabled by default within my eslint-config, with the same options.

Disabled padding-line-between-statements until https://github.com/eslint/eslint/issues/11178 is resolved
2018-12-10 06:29:39 +00:00

17 lines
273 B
JavaScript

"use strict";
module.exports = {
"extends": "futagozaryuu/node-v6",
"root": true,
"rules": {
"no-eval": 0,
// Disabled until https://github.com/eslint/eslint/issues/11178 is resolved
"padding-line-between-statements": 0,
},
};