Add editorconfig, gitignore direnv
This commit is contained in:
parent
234a648149
commit
2138ee8088
24
.editorconfig
Normal file
24
.editorconfig
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Editor configuration, see http://editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
charset = utf-8
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# Ignore diffs/patches
|
||||||
|
[*.{diff,patch}]
|
||||||
|
end_of_line = unset
|
||||||
|
insert_final_newline = unset
|
||||||
|
trim_trailing_whitespace = unset
|
||||||
|
indent_size = unset
|
||||||
|
charset = unset
|
||||||
|
indent_style = unset
|
||||||
|
indent_size = unset
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
max_line_length = off
|
||||||
|
trim_trailing_whitespace = false
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -55,3 +55,5 @@ jspm_packages
|
||||||
/dist_keycloak
|
/dist_keycloak
|
||||||
/build
|
/build
|
||||||
/storybook-static
|
/storybook-static
|
||||||
|
|
||||||
|
.direnv
|
||||||
|
|
Loading…
Reference in a new issue