- Revert to using PyPI release by adding add-editorconfig.patch, which is needed to allow the test suite to pass. https://github.com/timothycrosley/isort/issues/814 OBS-URL: https://build.opensuse.org/request/show/676235 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=11
25 lines
590 B
Diff
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
|