Skip to content

Commit

Permalink
pylintrc: add more module checks
Browse files Browse the repository at this point in the history
* Repo is already clear... so let's turn these on

Signed-off-by: Aaron Bauman <bman@gentoo.org>
Signed-off-by: Zac Medico <zmedico@gentoo.org>
  • Loading branch information
FuzzyGophers authored and zmedico committed Aug 4, 2020
1 parent b73bbf1 commit 8b10dc3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .editorconfig
@@ -1,4 +1,4 @@
# Copyright 2017 Gentoo Foundation
# Copyright 2017-2020 Gentoo Authors

root = true

Expand All @@ -12,3 +12,6 @@ insert_final_newline = true

[*.{yaml,yml}]
indent_style = space

[pylintrc]
indent_style = space
27 changes: 17 additions & 10 deletions pylintrc
Expand Up @@ -13,16 +13,23 @@
#disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module
disable=all
enable=
missing-final-newline,
mixed-line-endings,
redefined-builtin,
reimported,
trailing-newlines,
trailing-whitespace,
unexpected-line-ending-format,
unnecessary-semicolon,
unused-import,
useless-object-inheritance
cyclic-import,
import-error,
import-self,
misplaced-future,
missing-final-newline,
mixed-line-endings,
redefined-builtin,
reimported,
relative-beyond-top-level,
trailing-newlines,
trailing-whitespace,
unexpected-line-ending-format,
unnecessary-semicolon,
unused-import,
useless-import-alias,
useless-object-inheritance,
wildcard-import

# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
Expand Down

0 comments on commit 8b10dc3

Please sign in to comment.