1
0
Fork 0

add .editorconfig

This commit is contained in:
Luca Bilke 2024-03-12 22:41:53 +01:00
parent ce0afb9530
commit 7038828085
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
1 changed files with 18 additions and 0 deletions

18
.editorconfig Normal file
View File

@ -0,0 +1,18 @@
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
# Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2
# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2