We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bebe88e + 85830b0 commit f644f8eCopy full SHA for f644f8e
.editorconfig
@@ -0,0 +1,27 @@
1
+# Summary: coding style configuration for editors that read .editorconfig.
2
+#
3
+# EditorConfig defines a file format for specifying some common coding style
4
+# parameters. Many editors recognize .editorconfig files automatically, and
5
+# there exist plugins for other editors. See https://spec.editorconfig.org/.
6
+
7
+root = true
8
9
+[*]
10
+charset = utf-8
11
+end_of_line = lf
12
+insert_final_newline = true
13
+spelling_language = en-US
14
+trim_trailing_whitespace = true
15
16
+[*.py]
17
+indent_size = 4
18
+indent_style = space
19
+max_line_length = 100
20
21
+[*.sh]
22
23
24
25
26
+[*.yml,*.yaml]
27
+indent_size = 2
0 commit comments