flake8-isort
flake8-isort copied to clipboard
flake8 plugin that integrates isort
I'd like to use flake8-isort in my project, but I can't because it is extremely slow. Here is a script to reproduce the issue. ```py import os import shutil from...
Hi, for some strange reason I get inconsistent results by running `flake8` with flake8-isort installed and running `isort` directly. The issue arises with these imports:# ``` from _pydecimal import Decimal,...
This PR is an experiment in ergonomics of `flake8` output with the `--isort-show-traceback` option. At the moment the full traceback is printed with each message emitted. When I'm running flake8...
If you update isort to the latest version, which is required to use `--profile`, this plugin breaks: ``` Traceback (most recent call last): File "C:\Users\Kende\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\flake8\plugins\manager.py", line 157, in load_plugin self._load()...
In a project I'm working on (can provide link if you need it) we have a pipeline setup to run flake8, but `flake8-isort` doesn't seem to run correctly as it...
In one of my files I have an import line that with a recent commit exceeded the length of `79` (the [default line length](https://timothycrosley.github.io/isort/docs/configuration/options/#line-length) in `isort`). For some reason, in...
In reference to #42 Within `parse_options`, `options.config` should be the command-line parameter received by flake8 itself. Once you have that, it's just matter of giving it proper priority. Note that...
There's an awesome setting for the `isort` that I use quite frequently in my setup: `settings-path`. It allows to specify the desired configuration path. Could I please add a support...
I execute flake8 with the command line param `--max-line-length=120`. It would be cool if that param is also passed to isort. The other interesting flake8 cli param is `--config`. My...
I'm trying to use `flake8 --config=config.cfg` in config.cfg, I have an `[isort]` section: ```ini [isort] line_length=100 indent=' ' multi_line_output=0 length_sort=1 sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER import_heading_stdlib=Stdlib import_heading_thirdparty=External Libraries import_heading_firstparty=Snekchek ``` yet I keep getting...