aboutsummaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorRasmus Steinke <rasi@xssn.at>2020-07-23 19:39:05 +0200
committerGitHub <noreply@github.com>2020-07-23 19:39:05 +0200
commit6e7fd8e3db831eedcea63aa1c1869c5fcb71f265 (patch)
tree9884d77b196114d8d62843f147c212a6cd1b4fe6 /.editorconfig
parent63e870e6ad07fa7abad0d76038ffe97ac2e1a8e0 (diff)
parent527bb3b3ac2186c4a1181c41d53fd7bef7693d66 (diff)
downloadrofi-pass-6e7fd8e3db831eedcea63aa1c1869c5fcb71f265.tar.gz
Merge pull request #198 from chrko/cleanup
Fix handling of filenames with spaces (regression #179) + clean formating
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..f068930
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,19 @@
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+charset = utf-8
+trim_trailing_whitespace = true
+
+indent_style = tab
+
+[Makefile]
+indent_style = tab
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.py]
+indent_style = space
+indent_size = 4