itw-python-builder 0.1.11__tar.gz → 0.1.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/PKG-INFO +1 -1
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder/.pylintrc +21 -19
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/PKG-INFO +1 -1
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/pyproject.toml +1 -1
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/LICENSE +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/README.md +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder/__init__.py +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder/cli.py +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder/tasks.py +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder/version.py +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/SOURCES.txt +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/dependency_links.txt +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/entry_points.txt +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/requires.txt +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/top_level.txt +0 -0
- {itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/setup.cfg +0 -0
|
@@ -310,7 +310,7 @@ max-bool-expr=5
|
|
|
310
310
|
max-branches=12
|
|
311
311
|
|
|
312
312
|
# Maximum number of locals for function / method body.
|
|
313
|
-
max-locals=
|
|
313
|
+
max-locals=25
|
|
314
314
|
|
|
315
315
|
# Maximum number of parents for a class (see R0901).
|
|
316
316
|
max-parents=15
|
|
@@ -439,23 +439,25 @@ confidence=HIGH,
|
|
|
439
439
|
# --enable=similarities". If you want to run only the classes checker, but have
|
|
440
440
|
# no Warning level messages displayed, use "--disable=all --enable=classes
|
|
441
441
|
# --disable=W".
|
|
442
|
-
disable=raw-checker-failed,
|
|
443
|
-
W0223,
|
|
444
|
-
E1101,
|
|
445
|
-
C0114,
|
|
446
|
-
C0115,
|
|
447
|
-
C0116,
|
|
448
|
-
C0304,
|
|
449
|
-
R0903,
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
use-
|
|
442
|
+
disable=raw-checker-failed, # internal pylint checker error
|
|
443
|
+
W0223, # abstract-method not overridden
|
|
444
|
+
E1101, # no-member (false positives with Django ORM)
|
|
445
|
+
C0114, # missing-module-docstring
|
|
446
|
+
C0115, # missing-class-docstring
|
|
447
|
+
C0116, # missing-function-docstring
|
|
448
|
+
C0304, # missing-final-newline
|
|
449
|
+
R0903, # too-few-public-methods (Django Meta classes)
|
|
450
|
+
W0718, # broad-exception-caught
|
|
451
|
+
W0719, # broad-exception-raised
|
|
452
|
+
bad-inline-option, # unrecognized inline pylint option
|
|
453
|
+
locally-disabled, # warning about locally disabled messages
|
|
454
|
+
file-ignored, # warning about ignored files
|
|
455
|
+
suppressed-message, # warning about suppressed messages
|
|
456
|
+
useless-suppression, # unnecessary pylint: disable comment
|
|
457
|
+
deprecated-pragma, # old-style pylint pragma
|
|
458
|
+
use-symbolic-message-instead, # use message name instead of code
|
|
459
|
+
use-implicit-booleaness-not-comparison-to-string, # compare to string instead of using bool
|
|
460
|
+
use-implicit-booleaness-not-comparison-to-zero # compare to zero instead of using bool
|
|
459
461
|
|
|
460
462
|
# Enable the message, report, category or checker with the given id(s). You can
|
|
461
463
|
# either give multiple identifier separated by comma (,) or put this option
|
|
@@ -662,7 +664,7 @@ callbacks=cb_,
|
|
|
662
664
|
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
|
|
663
665
|
|
|
664
666
|
# Argument names that match this expression will be ignored.
|
|
665
|
-
ignored-argument-names=_.*|^ignored_|^unused_
|
|
667
|
+
ignored-argument-names=_.*|^ignored_|^unused_|^args$|^kwargs$
|
|
666
668
|
|
|
667
669
|
# Tells whether we should check for unused import in __init__ files.
|
|
668
670
|
init-import=no
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "itw_python_builder"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.12"
|
|
8
8
|
description = "Standardized Django deployment pipeline with Docker, testing, and SonarQube integration"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/requires.txt
RENAMED
|
File without changes
|
{itw_python_builder-0.1.11 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|