From 517b89209c6e4ed452a57688bb828149c03ef4a9 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 10 May 2016 21:15:48 -0700 Subject: [PATCH] tools: enforce linting for unix-style line endings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/6685 Reviewed-By: Michaël Zasso Reviewed-By: Johan Bergström Reviewed-By: James M Snell Reviewed-By: Roman Reiss Reviewed-By: Ben Noorhduis --- .eslintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc b/.eslintrc index 790803cb1e..7ab13d422f 100644 --- a/.eslintrc +++ b/.eslintrc @@ -60,6 +60,7 @@ rules: indent: [2, 2, {SwitchCase: 1}] key-spacing: [2, {mode: "minimum"}] keyword-spacing: 2 + linebreak-style: [2, "unix"] max-len: [2, 80, 2] new-parens: 2 no-mixed-spaces-and-tabs: 2