From b59b43fa4461a6ffc529da60954b463a13052ace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Thu, 16 Aug 2018 14:31:09 -0300 Subject: [PATCH] Enforce linebreak style (#1213) * Now forcing Unix linebreak style. * Added linebreak style for Solidity files. --- .eslintrc | 1 + .soliumrc.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.eslintrc b/.eslintrc index e88e8355d..117135b36 100644 --- a/.eslintrc +++ b/.eslintrc @@ -32,6 +32,7 @@ "eqeqeq": ["error", "smart"], "generator-star-spacing": ["error", "before"], "indent": ["error", 2], + "linebreak-style": ["error", "unix"], "max-len": ["error", 120, 2], "no-debugger": "off", "no-dupe-args": "error", diff --git a/.soliumrc.json b/.soliumrc.json index c2e1906a3..6a08c6466 100644 --- a/.soliumrc.json +++ b/.soliumrc.json @@ -4,6 +4,7 @@ "rules": { "error-reason": "off", "indentation": ["error", 2], + "linebreak-style": ["error", "unix"], "max-len": ["error", 79], "no-constant": ["error"], "no-empty-blocks": "off",