-
Is there a way to skip formatting (sorting) of imports or forward these lines to an external tool such as ISort?
-
#1772 fixed errors from trying to ask git about files outside its knowledge by ignoring these kind of external links, but did not stop isort from continuing to follow, and possibly edit, these files.
…
-
Now [ruff](https://github.com/charliermarsh/ruff) is blazing fast linter than flake8. Its rules are self contained and it is evolving quickly so far. Currently it has covered most useful rules. I thin…
-
```python
import datetime
from mylib import (
module1,
module2,
module3,
module4,
)
__all__ = (
"func1",
"func2",
"func3",
"func4",
)
```
after usi…
-
running isort over the following file:
```
from math import sqrt
if __name__ == "__main__":
thing = sqrt(3)
# some random comments
from datetime import datetime
dt = datetime(…
-
The PEP-8, says about `import`s' position and order:
> Imports should be grouped in the following order:
>
> 1. Standard library imports.
> 2. Related third party imports.
> 3. Local applicati…
-
#### [Video](https://www.youtube.com/watch?v=lmMZ7Axk2T8&list=PL3MmuxUbc_hIUISrluw_A7wDSmfOhErJK&index=47)
!!! на последних 4 минутах показан быстрый последовательный запуск > прогон через pre-commi…
-
### Is your feature request related to a problem? Please describe.
it's hard to review this code because it doesn't use standardized formatting
### Describe the solution you'd like
I'd like to stan…
-
## Is your feature/enhancement proposal related to a problem? Please describe.
When running tools to format TOML files, they may disagree with PDM on layout. When these differences occur, it's anno…
-
Hello, and thanks for a very useful package!
If I set `--force-alphabetical-sort` then an extra line is inserted between `import` and `from` even if `--lines-between-types=0`
Start with this tes…