input-remapper/.pylintrc

18 lines
458 B
INI
Raw Normal View History

2020-11-22 20:41:29 +00:00
[_]
2021-09-26 10:44:56 +00:00
max-line-length=88 # black
2022-04-17 10:19:23 +00:00
extension-pkg-whitelist=evdev, pydantic
load-plugins=pylint_pydantic
2021-09-26 10:44:56 +00:00
2020-11-22 20:41:29 +00:00
disable=
# that is the standard way to import GTK afaik
wrong-import-position,
2021-02-14 11:34:56 +00:00
# using """ for comments highlights them in green for me and makes it
# a great way to separate stuff into multiple sections
pointless-string-statement
# https://github.com/psf/black/blob/main/docs/compatible_configs/pylint/pylintrc
C0330, C0326