From b5d282807078b6f6feb2b83b77c3701900c4810a Mon Sep 17 00:00:00 2001 From: Deimos Date: Fri, 5 Jul 2019 17:27:08 -0600 Subject: [PATCH] Disable line-ending checks in eslint and stylelint With the current repo setup, line-endings will automatically be converted to and from CRLF when someone is working on Windows. This is how we want it to work, but since the line-endings are CRLF while they're working, these checks will always throw a ton of errors. We can safely just disable them, since everything should be fine and handled properly already. --- tildes/package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/tildes/package.json b/tildes/package.json index 84c52e7..5f78985 100644 --- a/tildes/package.json +++ b/tildes/package.json @@ -37,7 +37,6 @@ ], "prettier": { "bracketSpacing": false, - "endOfLine": "lf", "printWidth": 88, "proseWrap": "always", "tabWidth": 4 @@ -115,7 +114,6 @@ "function-whitespace-after": "always", "indentation": 2, "length-zero-no-unit": true, - "linebreaks": "unix", "max-empty-lines": 1, "max-line-length": 88, "media-feature-colon-space-after": "always",