Browse Source

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.
merge-requests/74/head
Deimos 5 years ago
parent
commit
b5d2828070
  1. 2
      tildes/package.json

2
tildes/package.json

@ -37,7 +37,6 @@
], ],
"prettier": { "prettier": {
"bracketSpacing": false, "bracketSpacing": false,
"endOfLine": "lf",
"printWidth": 88, "printWidth": 88,
"proseWrap": "always", "proseWrap": "always",
"tabWidth": 4 "tabWidth": 4
@ -115,7 +114,6 @@
"function-whitespace-after": "always", "function-whitespace-after": "always",
"indentation": 2, "indentation": 2,
"length-zero-no-unit": true, "length-zero-no-unit": true,
"linebreaks": "unix",
"max-empty-lines": 1, "max-empty-lines": 1,
"max-line-length": 88, "max-line-length": 88,
"media-feature-colon-space-after": "always", "media-feature-colon-space-after": "always",

Loading…
Cancel
Save