mirror of https://github.com/wg-easy/wg-easy
Browse Source
Closes #1287 Co-authored-by: Vadim Babadzhanyan <vadim.babadzhanyan@my.games>pull/1304/head
committed by
GitHub
14 changed files with 241 additions and 21 deletions
@ -0,0 +1,23 @@ |
|||
# http://editorconfig.org |
|||
root = true |
|||
|
|||
[*] |
|||
indent_style = space |
|||
indent_size = 2 |
|||
end_of_line = lf |
|||
charset = utf-8 |
|||
trim_trailing_whitespace = true |
|||
insert_final_newline = true |
|||
|
|||
# The JSON files contain newlines inconsistently |
|||
[*.json] |
|||
insert_final_newline = ignore |
|||
|
|||
# Minified JavaScript files shouldn't be changed |
|||
[**.min.js] |
|||
indent_style = ignore |
|||
insert_final_newline = ignore |
|||
|
|||
[*.md] |
|||
trim_trailing_whitespace = false |
|||
|
@ -1,3 +1,7 @@ |
|||
@tailwind base; |
|||
@tailwind components; |
|||
@tailwind utilities; |
|||
|
|||
.p-0 { |
|||
padding: 0; |
|||
} |
|||
|
Loading…
Reference in new issue