python-isort/add-editorconfig.patch
2019-02-14 21:12:20 +00:00

25 lines
590 B
Diff

diff -Nur isort-4.3.4-pypi/.editorconfig isort-4.3.4-github/.editorconfig
--- isort-4.3.4-pypi/.editorconfig 1970-01-01 07:00:00.000000000 +0700
+++ isort-4.3.4-github/.editorconfig 2018-02-12 22:12:28.000000000 +0700
@@ -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 = runtests.py,build,.tox
+balanced_wrapping = true
+not_skip = __init__.py
+
+[*.{rst,ini}]
+indent_style = space
+indent_size = 4
+
+[*.yml]
+indent_style = space
+indent_size = 2