1
0

Compare commits

..

No commits in common. "177ce6a888d01d8d7e5f8bb0455deca462e97ade" and "aef32a47b6e2c54c8a2b0eae2eaaf5846e521c0c" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -1 +1 @@
__version__ = '0.1.27' __version__ = '0.1.26'

View File

@ -8,8 +8,6 @@ lint.ignore = [
'TCH', # Microoptimization at the cost of readability 'TCH', # Microoptimization at the cost of readability
'D407', 'D413', # Weird documentation stuff
'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work) 'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work)
'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards? 'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards?
"E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603', "E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603',
@ -21,7 +19,7 @@ lint.ignore = [
# Autofix # Autofix
lint.fixable = [ lint.fixable = [
'SIM', 'C', 'Q', 'SIM', 'C', 'Q', 'D',
'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001', 'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001',
'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101', 'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101',
] ]