diff options
| author | Max Graey <maxgraey@gmail.com> | 2019-01-26 21:09:53 +0200 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-26 14:09:53 -0500 |
| commit | 490c2eb5069c513f19429cdfa902796eb2819c2a (patch) | |
| tree | 9bb46f3f65adaaf40d661b06f126e48ac37a354a | |
| parent | 9c7d1244ede99166119e1707e52c324e1b9eb4ab (diff) | |
add charset & trim_trailing_whitespace (denoland/deno_std#158)
Original: https://github.com/denoland/deno_std/commit/37e3239fc09f3046a6bd17c060b83d02d42f922f
| -rw-r--r-- | .editorconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index d25df65a1..2bdd36acf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,11 +1,14 @@ root = true [*.ts] +charset = utf-8 end_of_line = lf insert_final_newline = true +trim_trailing_whitespace = true indent_style = space indent_size = 2 [*.yml] indent_style = space +trim_trailing_whitespace = true indent_size = 2 |
