input-remapper/.pylintrc

17 lines
419 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
extension-pkg-whitelist=evdev
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