-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
# We shall not define indent_size ⬇️ when using tabs. | ||
# tab_width doesn't make much sense as it can be left to the reader to decide. | ||
indent_style = tab | ||
insert_final_newline = true | ||
|
||
[**.{js,jsx,ts,tsx}] | ||
indent_size = 2 | ||
max_line_length = 80 | ||
|
||
|
||
[**.{yml,yaml}] | ||
# Spaces are mandatory for yaml files: | ||
indent_style = space | ||
indent_size = 2 | ||
# A high max_line_length is needed as prettier doesn't manage property-name | ||
# line-wrapping correctly: | ||
# See https://github.com/prettier/prettier/issues/5599 | ||
max_line_length = 1000 | ||
trim_trailing_whitespace = false | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
bracketSpacing: true | ||
semi: false | ||
singleQuote: true |