Skip to content

Commit 95a3432

Browse files
committed
πŸ§‘β€πŸ’» devxp: add .editorconfig
1 parent 34510a9 commit 95a3432

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

β€Ž.editorconfig

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
root = true
2+
3+
[*]
4+
tab_width = 4
5+
end_of_line = lf
6+
max_line_length = 88
7+
ij_visual_guides = 88,120
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.{js,py,html}]
12+
charset = utf-8
13+
14+
[*.{js,jsx,ts,tsx}]
15+
indent_style = space
16+
indent_size = 2
17+
18+
[*.md]
19+
trim_trailing_whitespace = false
20+
21+
[*.{json,yml,yaml}]
22+
indent_style = space
23+
indent_size = 2
24+
25+
[Makefile]
26+
indent_style = tab
27+
28+
[.flake8]
29+
indent_style = space
30+
indent_size = 2
31+
32+
[*.py]
33+
indent_style = space
34+
indent_size = 4
35+
ij_python_from_import_parentheses_force_if_multiline = true

0 commit comments

Comments
Β (0)