diff --git a/.copier-answers.yml b/.copier-answers.yml index 9fc3c8a..2308f94 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -2,7 +2,7 @@ # Answer file maintained by Copier for: https://github.com/KyleKing/calcipy_template # DO NOT MODIFY THIS FILE. Edit by re-running copier and changing responses to the questions # Check into version control. -_commit: 1.9.4 +_commit: 1.9.6 _src_path: gh:KyleKing/calcipy_template author_email: dev.act.kyle@gmail.com author_name: Kyle King diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ccba315..52ea42d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -42,7 +42,7 @@ repos: - id: trailing-whitespace exclude: __snapshots__/.*\.ambr - repo: https://github.com/commitizen-tools/commitizen - rev: 3.12.0 + rev: v3.13.0 hooks: - id: commitizen - repo: https://github.com/executablebooks/mdformat @@ -58,12 +58,12 @@ repos: - id: shellcheck args: [--severity=warning] - repo: https://github.com/pre-commit/mirrors-prettier - rev: "v3.1.0" + rev: "v4.0.0-alpha.4" hooks: - id: prettier additional_dependencies: # Note: this version must be the same as the hook revision - - "prettier@3.1.0" + - "prettier@4.0.0-alpha.4" - "prettier-plugin-sh" exclude: \.copier-answers\.yml|tests/.*/cassettes/.*\.yaml types_or: [html, javascript, json, shell, yaml] @@ -92,7 +92,7 @@ repos: args: [--never] files: tail_jsonl/.*\.py - repo: https://github.com/KyleKing/calcipy - rev: 2.0.2 + rev: 2.0.3 hooks: - id: copier-forbidden-files - id: lint-fix diff --git a/.pylintrc b/.pylintrc index e20b9bf..a047511 100644 --- a/.pylintrc +++ b/.pylintrc @@ -25,9 +25,7 @@ load-plugins= pylint.extensions.redefined_variable_type, pylint.extensions.set_membership, pylint.extensions.typing, - pylint.extensions.while_used, - use-implicit-booleaness-not-comparison-to-string, - use-implicit-booleaness-not-comparison-to-zero + pylint.extensions.while_used [BASIC] include-naming-hint=yes @@ -63,6 +61,7 @@ extension-pkg-whitelist=pydantic # Defer to other tools and reduce false positives disable= broad-except, + deprecated-typing-alias, fixme, import-outside-toplevel, line-too-long,