-
https://pypi.python.org/pypi/flake8
As seen in https://github.com/thread/routemaster/pull/41#issuecomment-367622211
Configuration is stored in setup.cfg
adius updated
9 months ago
-
### Description
Equivalent of:
```toml
[tool.ruff.lint.isort]
detect-same-package = false
```
-
Type: Bug
Even though this problem happens with our Python related extensions, I don't think it's something related to them control as the commands seem to be triggered properly 🤔
Repro steps:
…
-
I love isort and probably run it hundreds of times a day. It standardizes all of my imports so I never have to think about them.
One pain point I have is that I would like to standardize the impor…
-
* alifedata-phyloinformatics-convert version: N/A
* Python version: N/A
* Operating System: N/A
### Description
We should sort all imports using `isort` and apply the [Black Code Style](https:…
-
### What needs to get done
1. Bring the latest linting config from starbase as much as possible
2. Replace isort with relevant ruff config. (Any unimplemented config is okay to ignore as long as ruf…
-
I have a set of import statements from a single package with one using an `as` statement. The correct sorting of the import statements is as below.
```python
from my.package.channel import (
…
-
Currently, isort only removes duplicate imports if they are in the same import sorting block:
```
import a
import a
import b
import b
```
Becomes:
```
import a
import b
```
However, …
-
This repository has an auto-merge Dependabot PR workflow. For the Python tooling we use — for example, black, flake8, isort — versions are specified in both requirements files, *and* the `.pre-commit-…
-
As per [github's instructions](https://help.github.com/articles/setting-guidelines-for-repository-contributors/).
In particular, it's worth mentioning:
- We like tests; we love TDD.
- How to ru…
meshy updated
6 years ago