From 5dfb6b14dc0de14e3647991e904de9679a59eb2a Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Mon, 10 Dec 2018 06:29:39 +0000 Subject: [PATCH] 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 --- .eslintrc.js | 4 +++- yarn.lock | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index efc89f1..2a49aff 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,7 +7,9 @@ module.exports = { "rules": { "no-eval": 0, - "linebreak-style": [ "error", "unix" ], + + // Disabled until https://github.com/eslint/eslint/issues/11178 is resolved + "padding-line-between-statements": 0, }, diff --git a/yarn.lock b/yarn.lock index 458429b..c81822b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1248,9 +1248,9 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5: integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= eslint-config-futagozaryuu@5: - version "5.5.0" - resolved "https://registry.yarnpkg.com/eslint-config-futagozaryuu/-/eslint-config-futagozaryuu-5.5.0.tgz#f66748f7048d304660b5d97f46220c984694af6b" - integrity sha512-v/DhqRAF85RbzP0Ng1dcDNzRcGQdpQ+UbFdXZ1XbBDeS0F0O0gzl7wGDBR2phMo1yGcfxa4dOUHIIVqIpfZqTg== + version "5.5.1" + resolved "https://registry.yarnpkg.com/eslint-config-futagozaryuu/-/eslint-config-futagozaryuu-5.5.1.tgz#99dc381affcdffb2f5450dace861d417aef2f469" + integrity sha512-cKg0Pe2n6H6tvs6h6eskvtKsgkMVntTclJ9YDdsAjIjciKmNlZXb7a0sI03FM9in6k3runMRI7njT5Z2GubEwA== dependencies: babel-eslint "^10.0.0" eslint-plugin-node "~8.0.0"