Skip to content

Commit 5454b23

Browse files
committed
Configure ruff pylint
1 parent ec3eddd commit 5454b23

File tree

2 files changed

+127
-1
lines changed

2 files changed

+127
-1
lines changed

.pre-commit-config.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ repos:
3636
files: ^pandas/core/
3737
exclude: ^pandas/core/api\.py$
3838
args: [--select, "ICN001", --exit-non-zero-on-fix]
39+
- id: ruff
40+
args: [--exit-non-zero-on-fix, --preview, "--ignore=E,F841,RUF"]
3941
- id: ruff-format
4042
exclude: ^scripts
4143
- repo: https://github.com/jendrikseipp/vulture

pyproject.toml

+125-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,131 @@ ignore = [
312312
# pairwise-over-zipped (>=PY310 only)
313313
"RUF007",
314314
# mutable-class-default
315-
"RUF012"
315+
"RUF012",
316+
317+
# Additional pylint rules
318+
# literal-membership
319+
"PLR6201", # 847 errors
320+
# Method could be a function, class method, or static method
321+
"PLR6301", # 11411 errors
322+
# Private name import
323+
"PLC2701", # 27 errors
324+
# Too many positional arguments (6/5)
325+
"PLR0917", # 470 errors
326+
# compare-to-empty-string
327+
"PLC1901",
328+
# `tempfile.NamedTemporaryFile` in text mode without explicit `encoding` argument
329+
"PLW1514", # 1 error
330+
# Object does not implement `__hash__` method
331+
"PLW1641", # 16 errors
332+
# Bad or misspelled dunder method name
333+
"PLW3201", # 69 errors, seems to be all false positive
334+
# Unnecessary lookup of dictionary value by key
335+
"PLR1733", # 5 errors, it seems like we wannt to ignore these
336+
# Unnecessary lookup of list item by index
337+
"PLR1736", # 4 errors, we're currently having inline pylint ignore
338+
# empty-comment
339+
"PLR2044", # autofixable
340+
# Unpacking a dictionary in iteration without calling `.items()`
341+
"PLE1141", # autofixable
342+
343+
# Output of pylint-to-ruff
344+
# "PLC0103", # invalid-name
345+
# "PLC0114", # missing-module-docstring
346+
# "PLC0115", # missing-class-docstring
347+
# "PLC0116", # missing-function-docstring
348+
# "PLC0121", # singleton-comparison
349+
# "PLC0123", # unidiomatic-typecheck
350+
# "PLC0200", # consider-using-enumerate
351+
# "PLC0204", # bad-mcs-classmethod-argument
352+
# "PLC0302", # too-many-lines
353+
# "PLC0325", # superfluous-parens
354+
# "PLC0411", # wrong-import-order
355+
# "PLC0412", # ungrouped-imports
356+
# "PLC0413", # wrong-import-position
357+
"PLC0415", # import-outside-toplevel
358+
# "PLC1802", # use-implicit-booleaness-not-len
359+
# "PLC1803", # use-implicit-booleaness-not-comparison
360+
# "PLC1804", # use-implicit-booleaness-not-comparison-to-string
361+
# "PLC1805", # use-implicit-booleaness-not-comparison-to-zero
362+
"PLC2801", # unnecessary-dunder-call
363+
# "PLC3001", # unnecessary-lambda-assignment
364+
# "PLE0110", # abstract-class-instantiated
365+
# "PLE0401", # import-error
366+
# "PLE0601", # used-before-assignment
367+
# "PLE0602", # undefined-variable
368+
# "PLE0611", # no-name-in-module
369+
# "PLE0633", # unpacking-non-sequence
370+
# "PLE1101", # no-member
371+
# "PLE1120", # no-value-for-parameter
372+
# "PLE1121", # too-many-function-args
373+
# "PLE1123", # unexpected-keyword-arg
374+
# "PLE1124", # redundant-keyword-arg
375+
# "PLE1130", # invalid-unary-operand-type
376+
# "PLE1133", # not-an-iterable
377+
# "PLE1135", # unsupported-membership-test
378+
# "PLE1136", # unsubscriptable-object
379+
# "PLE1137", # unsupported-assignment-operation
380+
# "PLI0001", # raw-checker-failed
381+
# "PLI0010", # bad-inline-option
382+
# "PLI0011", # locally-disabled
383+
# "PLI0013", # file-ignored
384+
# "PLI0020", # suppressed-message
385+
# "PLI0021", # useless-suppression
386+
# "PLI0022", # deprecated-pragma
387+
# "PLI0023", # use-symbolic-message-instead
388+
# "PLI1101", # c-extension-no-member
389+
"PLR0124", # comparison-with-itself
390+
# "PLR0401", # cyclic-import
391+
# "PLR0801", # duplicate-code
392+
# "PLR0901", # too-many-ancestors
393+
# "PLR0902", # too-many-instance-attributes
394+
# "PLR0903", # too-few-public-methods
395+
"PLR0904", # too-many-public-methods
396+
"PLR0911", # too-many-return-statements
397+
"PLR0912", # too-many-branches
398+
"PLR0913", # too-many-arguments
399+
"PLR0914", # too-many-locals
400+
"PLR0915", # too-many-statements
401+
"PLR0916", # too-many-boolean-expressions
402+
"PLR1702", # too-many-nested-blocks
403+
"PLR1704", # redefined-argument-from-local
404+
# "PLR1705", # no-else-return
405+
# "PLR1710", # inconsistent-return-statements
406+
# "PLR1720", # no-else-raise
407+
# "PLR1724", # no-else-continue
408+
# "PLR1732", # consider-using-with
409+
# "PLR1735", # use-dict-literal
410+
# "PLW0102", # dangerous-default-value
411+
# "PLW0104", # pointless-statement
412+
# "PLW0106", # expression-not-assigned
413+
"PLW0108", # unnecessary-lambda
414+
# "PLW0123", # eval-used
415+
# "PLW0125", # using-constant-test
416+
# "PLW0143", # comparison-with-callable
417+
# "PLW0201", # attribute-defined-outside-init
418+
# "PLW0212", # protected-access
419+
# "PLW0221", # arguments-differ
420+
# "PLW0222", # signature-differs
421+
# "PLW0223", # abstract-method
422+
# "PLW0231", # super-init-not-called
423+
# "PLW0236", # invalid-overridden-method
424+
# "PLW0237", # arguments-renamed
425+
# "PLW0239", # overridden-final-method
426+
# "PLW0511", # fixme
427+
"PLW0603", # global-statement
428+
# "PLW0613", # unused-argument
429+
# "PLW0621", # redefined-outer-name
430+
# "PLW0622", # redefined-builtin
431+
# "PLW0641", # possibly-unused-variable
432+
# "PLW0642", # self-cls-assignment
433+
# "PLW0706", # try-except-raise
434+
# "PLW0707", # raise-missing-from
435+
# "PLW0718", # broad-exception-caught
436+
# "PLW0719", # broad-exception-raised
437+
# "PLW1113", # keyword-arg-before-vararg
438+
# "PLW1114", # arguments-out-of-order
439+
# "PLW4901", # deprecated-module
316440
]
317441

318442
exclude = [

0 commit comments

Comments
 (0)