From cacab8d7ae81159bab5b83bdd50d48c3c7b3f05f Mon Sep 17 00:00:00 2001 From: Ivan Demidov Date: Fri, 9 Oct 2020 16:20:40 +0300 Subject: [PATCH] style: disable linebreak-style rule --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index d5271c1..a295009 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,7 +12,7 @@ "rules": { "indent": [2, 4, {"SwitchCase": 1}], "quotes": [2, "single"], - "linebreak-style": [2, "unix"], + "linebreak-style": "off", "semi": [2, "always"], "camelcase": [2, {"properties": "always"}], "brace-style": [2, "1tbs", {"allowSingleLine": true}]