Skip to content

Commit

Permalink
Added .pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
dalmouiee committed Nov 29, 2023
1 parent 3701633 commit 5a70fbf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[BASIC]
load-plugins=pylint_django

[MESSAGES CONTROL]

# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once). You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable=django-not-configured,
missing-module-docstring,
too-few-public-methods,
R0801

ignore=tests.py, urls.py, migrations

0 comments on commit 5a70fbf

Please sign in to comment.