Skip to content

Commit 74ef665

Browse files
authored
Merge pull request #118 from MightyCreak/pylint
Extract Preferences and Resources in their own modules
2 parents 1402e97 + 6b78efd commit 74ef665

File tree

7 files changed

+1078
-965
lines changed

7 files changed

+1078
-965
lines changed

.pylintrc

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,23 +87,24 @@ disable=raw-checker-failed,
8787
deprecated-pragma,
8888
use-symbolic-message-instead,
8989

90-
# temporary silenced messages
90+
# temporary silenced messages (ordered alphabetically)
91+
duplicate-code,
92+
fixme,
93+
import-error,
9194
invalid-name,
92-
missing-module-docstring,
9395
missing-class-docstring,
9496
missing-function-docstring,
95-
import-error,
97+
missing-module-docstring,
9698
no-self-use,
99+
too-few-public-methods,
97100
too-many-arguments,
98101
too-many-branches,
102+
too-many-instance-attributes,
99103
too-many-locals,
100-
too-many-statements,
101104
too-many-nested-blocks,
102-
too-few-public-methods,
103-
unused-argument,
104-
fixme,
105+
too-many-statements,
105106
unnecessary-dict-index-lookup,
106-
duplicate-code
107+
unused-argument
107108

108109
# Enable the message, report, category or checker with the given id(s). You can
109110
# either give multiple identifier separated by comma (,) or put this option

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Added a flatpak job in the CI
1313

1414
### Changed
15+
- main.py slimmed down by about 1000 lines
1516

1617
### Fixed
1718

0 commit comments

Comments
 (0)