Pigs 74 workflow examples#4
Merged
Merged
Conversation
…roperties still missing)
|
A few things
[project]
name = "python"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
[tool.ruff]
format.preview = true
target-version = "py314"
line-length = 100
lint.select = [
"A", # builtins shadowing
"ANN", # type annotations
"ARG", # unused arguments
"B", # bugbear (common bugs & bad patterns)
"BLE", # blind excepts
"C4", # comprehensions
"DTZ", # datetime timezone
"E", # pycodestyle errors
"ERA", # eradicate commented-out code
"FA", # future annotations
"FBT", # boolean trap
"F", # pyflakes
"FURB", # refurb - modern Python idioms
"I", # import sorting
"ICN", # import conventions
"ISC", # implicit str concat
"N", # naming conventions
"NPY", # numpy rules
"PGH", # pygrep-hooks
"PTH", # pathlib
"PT", # pytest style
"RET", # return statements
"RUF", # Ruff extra rules
"TRY", # tryceratops
"S", # security
"SIM", # simplifications
"C90", # mccabe complexity
"TID", # tidy imports
"TC", # typing under TYPE_CHECKING
"TD", # TODOs must be annotated
"UP", # pyupgrade / newer syntax
"W", # pycodestyle warnings
"YTT", # flake8-2020
"T10", # debugger statements
]
lint.ignore = ["S101", "S311", "TRY003", "TC006"]
lint.flake8-type-checking.strict = true
[tool.pyright]
typeCheckingMode = "strict"
# Pylint--------------------------------------------------------------------------
# https://github.com/atlassian-api/atlassian-python-api/blob/master/pyproject.toml
# Pylint--------------------------------------------------------------------------
[tool.pylint.FORMAT]
max-line-length = 100
[tool.pylint.MASTER]
jobs = 4
ignore-paths = '.venv'
[tool.pylint.REPORTS]
output-format = "colorized"
reports = "no"
[tool.pylint.TYPECHECK]
generated-members = []
[tool.pylint.BASIC]
good-names-rgxs = [".*Dep$"]
good-names = [
"i",
"j",
"n",
]
[tool.pylint.SPELLING]
spelling-private-dict-file = "private-dictionary.txt"
spelling-dict = "en_GB"
[tool.pylint.DESIGN]
max-args = 7
min-public-methods = 1
max-positional-arguments = 5
[tool.pylint.LOGGING]
[tool.pylint.'MESSAGES CONTROL']
disable = ["logging-fstring-interpolation", "wrong-import-order"]
[dependency-groups]
dev = [
"pyenchant>=3.3.0",
"pylint>=4.0.4",
"pyright>=1.1.407",
] |
|
@isadoraPGoNitro Let me know if any questions on the above comment |
RogerThomas
reviewed
Dec 30, 2025
RogerThomas
reviewed
Dec 30, 2025
RogerThomas
reviewed
Dec 30, 2025
RogerThomas
reviewed
Dec 30, 2025
RogerThomas
reviewed
Dec 30, 2025
|
A few comments and all the scripts/main-files need to be updated to use typer or argparse or any proper CLI param tool. (AI would do this very quickly) |
…er and standardize documentation commands
RogerThomas
reviewed
Dec 31, 2025
RogerThomas
reviewed
Dec 31, 2025
RogerThomas
reviewed
Dec 31, 2025
RogerThomas
reviewed
Dec 31, 2025
RogerThomas
reviewed
Dec 31, 2025
RogerThomas
reviewed
Dec 31, 2025
RogerThomas
reviewed
Dec 31, 2025
…enum fot format validation
RogerThomas
approved these changes
Jan 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added scripts for: employee_policy_onboarding and prepare_pdf_for_distribution
Updated scripts for: pii_redaction, batch_process, bulk_password_protect, convert_cli, extract_data, redact_by_keyword
Updated plataform_api and created sign_api