5dfb6b14dc
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
17 lines
273 B
JavaScript
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,
|
|
|
|
},
|
|
|
|
};
|