From 9f397c4c28458863df50d13321fc57f3f55c8d89 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 10 Oct 2019 10:45:17 +0200 Subject: [PATCH] [ADD] Python isort configuration --- install.sh | 1 + isort/.config/isort.cfg | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 isort/.config/isort.cfg diff --git a/install.sh b/install.sh index 00f0155..248417c 100755 --- a/install.sh +++ b/install.sh @@ -9,6 +9,7 @@ stow -t ~ flake8 stow -t ~ git stow -t ~ i3 stow -t ~ i3blocks +stow -t ~ isort stow -t ~ ranger stow -t ~ redshift stow -t ~ rofi diff --git a/isort/.config/isort.cfg b/isort/.config/isort.cfg new file mode 100644 index 0000000..ba2778d --- /dev/null +++ b/isort/.config/isort.cfg @@ -0,0 +1,6 @@ +[settings] +multi_line_output=3 +include_trailing_comma=True +force_grid_wrap=0 +use_parentheses=True +line_length=88