1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

enfore unix line endings and always ending files with line endings (#1997)

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-01-21 08:09:41 -05:00 committed by GitHub
parent 64be4ee948
commit 2e2283bcc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
92 changed files with 97 additions and 91 deletions

View File

@ -46,6 +46,8 @@ module.exports = {
"avoidEscape": true,
"allowTemplateLiterals": true,
}],
"linebreak-style": ["error", "unix"],
"eol-last": ["error", "always"],
"semi": ["error", "always"],
"object-shorthand": "error",
"prefer-template": "error",
@ -101,6 +103,8 @@ module.exports = {
}],
"semi": "off",
"@typescript-eslint/semi": ["error"],
"linebreak-style": ["error", "unix"],
"eol-last": ["error", "always"],
"object-shorthand": "error",
"prefer-template": "error",
"template-curly-spacing": "error",
@ -162,6 +166,8 @@ module.exports = {
}],
"semi": "off",
"@typescript-eslint/semi": ["error"],
"linebreak-style": ["error", "unix"],
"eol-last": ["error", "always"],
"object-shorthand": "error",
"prefer-template": "error",
"template-curly-spacing": "error",