summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-03-05 23:43:29 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2019-03-05 23:43:29 -0800
commit61563f3b7183d8e600a9f161e74af9252fb2fdbb (patch)
tree6cca66411134712787cb84f61ff842129cdd7787
parent0ef06b14f27fb67a7e39ad1ef6368d7592a05b99 (diff)
downloadisort-61563f3b7183d8e600a9f161e74af9252fb2fdbb.tar.gz
Add missing file
-rw-r--r--.editorconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..094bc546
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,20 @@
+root = true
+
+[*.py]
+max_line_length = 120
+indent_style = space
+indent_size = 4
+known_first_party = isort
+known_third_party = kate
+ignore_frosted_errors = E103
+skip = build,.tox,venv
+balanced_wrapping = true
+not_skip = __init__.py
+
+[*.{rst,ini}]
+indent_style = space
+indent_size = 4
+
+[*.yml]
+indent_style = space
+indent_size = 2