python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Simplifying line length with pre-commit, flake8, black, isort, pylint, etc
When using multiple tools that either check or format python files, is there a way to set line length once for all?
Currently I have:
.flake8 file:
max-line-length = 120
.isort.cfg file:
line-length ...

Marjeta
Votes: 0
Answers: 2
VSCode Python Linting .pylintrc in repository vs workspace root
I am trying to get pylint with vscode to respect .pylintrc placed in a repository. I had a look into the documentation of both pylint and vscode python extension. It doesn't seem possible.
Folder stru...
Daniel Bişar
Votes: 0
Answers: 1
How to add a custom-made "good-name" like "ax" to pylintrc settings in visual studio code?
In order to avoid dealing with warnings raised as a result of using the variable ax in plotting routines, I would like to add this to the list of good-name variables in my python. In Linux, which is t...
Roosha
Votes: 0
Answers: 1
Pylint, how to disable rule with condition
I don't want to disable the rule for entire project, but for a known scenario. Like:
class A:
def __init__(self, creator: Callback[[],B])
Most of time I use
x = A(lamda: Bx())
y = A(lamda: By())
...
DIG
Votes: 0
Answers: 1