* Enforce EOF New Line in .ts

* Add to .editorconfig
This commit is contained in:
Tanay Parikh 2021-02-02 16:11:52 -08:00 коммит произвёл GitHub
Родитель 2846dc2b05
Коммит c252df9aa9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -31,6 +31,10 @@ indent_size = 2
[*.json]
indent_size = 2
# TypeScript files
[*.ts]
insert_final_newline = true
# Dotnet code style settings:
[*.cs]
# Sort using and Import directives with System.* appearing first

Просмотреть файл

@ -19,6 +19,7 @@
"limit": 200
}
},
"one-line": [true, "check-open-brace", "check-catch", "check-finally", "check-else", "check-whitespace"]
"one-line": [true, "check-open-brace", "check-catch", "check-finally", "check-else", "check-whitespace"],
"eofline": true
}
}