About 1,190,000 results
Open links in new tab
  1. Avoiding Pylint warnings about too many arguments

    The mysum () is just an abstraction, in real scenarios the code that needs to be extracted is much more complex. My point is about having to pass many variables to the extracted function and …

  2. pylint - How do I create a pylintrc file - Stack Overflow

    I am running Linux. Can I do something like pylint --generate-rcfile > .pylintrc and then make changes to the resulting .pylintrc file to override the default settings? And if so should it be in...

  3. PyLint "Unable to import" error - how to set PYTHONPATH?

    I'm running PyLint from inside Wing IDE on Windows. I have a sub-directory (package) in my project and inside the package I import a module from the top level, ie. __init__.py myapp.py …

  4. python - How to run Pylint with PyCharm - Stack Overflow

    I want to configure Pylint as an external tool in my entire project directory for a Python project that I'm working on. I've tried to use the repository as a module with __init__.py and without, an...

  5. python - How do I disable a Pylint warning? - Stack Overflow

    I'm trying to disable warning C0321 ("more than one statement on a single line" -- I often put if statements with short single-line results on the same line), in Pylint 0.21.1 (if it matt...

  6. Pylint doesn't point to virtualenv Python interpreter

    My Pylint doesn't point to the virtualenv Python interpreter. Here is the output that I get when I run pylint --version: pylint --version Output: pylint 0.21.1, astng 0.20.1, common 0.50.3

  7. Is it possible to ignore one single specific line with Pylint?

    Mar 3, 2015 · This actually changes my Python logging settings, but Pylint thinks it is an unused import. I do not want to remove unused-import warnings in general, so is it possible to just …

  8. pylint false positive E0401 import errors in vscode while using venv

    Jun 29, 2018 · My problem was totally related to having pylint installed globally, and coding in a venv. vscode was trying to use the globally installed pylint which simply was not aware of …

  9. Pylint "unresolved import" error in Visual Studio Code

    Dec 27, 2018 · I am using the following setup macOS v10.14 (Mojave) Python 3.7.1 Visual Studio Code 1.30 Pylint 2.2.2 Django 2.1.4 I want to use linting to make my life a bit easier in Visual …

  10. How do I disable "missing docstring" warnings at a file-level in …

    Pylint throws errors that some of the files are missing docstrings. I try and add docstrings to each class, method and function, but it seems that Pylint also checks that files should have a docstr...