From d9cb0108ce92998079be8c63a27a166eeac41aff Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 10 Oct 2025 09:53:49 -0700 Subject: [PATCH] remove old lint configs --- .flake8 | 3 --- .pylintrc | 57 ------------------------------------------------------- 2 files changed, 60 deletions(-) delete mode 100644 .flake8 delete mode 100644 .pylintrc diff --git a/.flake8 b/.flake8 deleted file mode 100644 index f0c179a6..00000000 --- a/.flake8 +++ /dev/null @@ -1,3 +0,0 @@ -[flake8] -extend-ignore = W503, E203, E266, E741, F401 -max-line-length = 110 diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index 600d07f3..00000000 --- a/.pylintrc +++ /dev/null @@ -1,57 +0,0 @@ -[MASTER] -# Pickle collected data for later comparisons. -persistent=no - -# Use multiple processes to speed up Pylint, auto-detect number of cores. -jobs=0 - -[MESSAGES CONTROL] - -enable= - all, - -# It's worth looking at len-as-condition for optimization, but it's disabled -# here as it is not a correctness thing. Similarly eq-without-hash is -# probably worth improving. - -disable= - R, - I, - broad-except, - fixme, - global-statement, - invalid-name, - missing-module-docstring, - missing-class-docstring, - missing-function-docstring, - no-absolute-import, - no-member, # We'd like to use this, but our immutability is too hard for it - protected-access, - redefined-builtin, - too-many-lines, - raise-missing-from, # we should start doing this, but too noisy for now - consider-using-f-string, - unspecified-encoding, - useless-super-delegation, # not against this, but we have to do it for mypy happiness - use-implicit-booleaness-not-comparison-to-zero, # I often prefer non-implicit booleaness. - use-implicit-booleaness-not-comparison-to-string, - unused-argument, - useless-import-alias, - -[REPORTS] - -# Set the output format. Available formats are text, parseable, colorized, msvs -# (visual studio) and html. You can also give a reporter class, eg -# mypackage.mymodule.MyReporterClass. -#output-format=colorized -output-format=parseable - -# Tells whether to display a full report or only the messages -reports=no - -# Template used to display messages. This is a python new-style format string -# used to format the message information. See doc for all details -msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg})' - -[FORMAT] -max-line-length=110 -- 2.47.3