Skip to content
Snippets Groups Projects
.pylintrc 578 B
Newer Older
  • Learn to ignore specific revisions
  • [MASTER]
    
    # Add files or directories to the blacklist. They should be base names, not
    # paths.
    ignore=CVS, migrations, static, env, docs, manage.py
    
    # Use multiple processes to speed up Pylint.
    jobs=4
    
    # Pickle collected data for later comparisons.
    persistent=yes
    
    # When enabled, pylint would attempt to guess common misconfiguration and emit
    # user-friendly hints instead of false-positive error messages
    suggestion-mode=yes
    
    # List of plugins (as comma separated values of python modules names) to load,
    # usually to register additional checkers.
    load-plugins=pylint_django