Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
🔧 Sets editor to use LF UTF-8 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Jul 30, 2021
1 parent 07f9150 commit d1801c6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
root = true

# Basics - All Files
[*]
end_of_line = lf
charset = utf-8
insert_final_newline = true

# JS, TS and Vue
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true

# YAML, for config file
[*.{yml,yaml}]
indent_size = 2

# Markdown for docs
[*.md]
trim_trailing_whitespace = false

# Licensed under MIT, (C) 2021 Alicia Sykes <https://aliciasykes.com>

0 comments on commit d1801c6

Please sign in to comment.