Commit fae487b5 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Remove Pylint pre-commit hook

I have been reconsidering the value of Pylint for a while, and it now
seems to be causing issues:

    ************* Module pre_commit_mypy
    pre_commit_mypy.py:18:0: E0611: No name 'main' in module 'mypy.main' (no-name-in-module)
parent 998af9dd
Loading
Loading
Loading
Loading
+0 −32
Original line number Diff line number Diff line
@@ -93,37 +93,5 @@ include =
  ; B950 is a replacement for E501
  B0 B903 B950

[pylint.MASTER]
persistent=yes
ignore =
  __pycache__
  .*

[pylint.BASIC]
const-rgx = (([A-Z_][A-Z0-9_]*)|(_[A-Za-z0-9_]+))$
good-names = db, i, a, b, ab, t, fd

[pylint.REPORTS]
reports = no

[pylint.FORMAT]
indent-string = '\t'

[pylint.DESIGN]
max-attributes = 10

[pylint.MESSAGES CONTROL]
disable =
  bad-continuation,
  ; Would be nice to not disable but it is bugged; it trys to interpret tabs as
  ; spaces.

  trailing-whitespace,
  ; Would be nice to have enabled for *code* but not for comments or
  ; multi-line strings.

  wrong-import-order,
  ; Rely on isort, otherwise pylint and isort occasionally clash.


; vim:ft=cfg:sw=2:sts=2:expandtab
+0 −6
Original line number Diff line number Diff line
@@ -75,12 +75,6 @@ repos:
    - flake8-sfs
    - flake8-tabs

- repo: https://code.kodo.org.uk/dom/pre-commit-pylint
  rev: v2.6.2-1
  hooks:
  - id: pylint
    args: ["--fail-under=9.0", "--rcfile=.lint"]

- repo: local
  hooks:
  - id: mypy