We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm trying to set special options for a group of files in a folder:
[pylama] max_line_length = 79 linters = pylint, radon [pylama:*/tests/*] max_line_length = 100
But when I run pylama it still applies the configuration from the global section. I have also tried setting this option just for a specific file:
[pylama:*/tests/unit/mytest.py] max_line_length = 100
But it didn't work, I also tried using other options such as disable = C0114 or skip = 1, and they didn't work neither.
disable = C0114
skip = 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I'm trying to set special options for a group of files in a folder:
But when I run pylama it still applies the configuration from the global section. I have also tried setting this option just for a specific file:
But it didn't work, I also tried using other options such as
disable = C0114
orskip = 1
, and they didn't work neither.The text was updated successfully, but these errors were encountered: