Skip to content

Commit

Permalink
chore(deps): pre-commit autoupdate (#191)
Browse files Browse the repository at this point in the history
<!--pre-commit.ci start-->
updates:
- [github.com/tox-dev/pyproject-fmt: 2.0.4 →
2.1.1](tox-dev/pyproject-fmt@2.0.4...2.1.1)
<!--pre-commit.ci end-->

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored May 20, 2024
1 parent 5325e29 commit 287613d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/tox-dev/pyproject-fmt
rev: "2.0.4"
rev: "2.1.1"
hooks:
- id: pyproject-fmt

Expand Down
88 changes: 44 additions & 44 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,71 +34,71 @@ ruff = ">=0.2.1"
tap-google-analytics = 'tap_google_analytics.tap:TapGoogleAnalytics.cli'

[tool.ruff]
line-length = 100
target-version = "py38"

[tool.ruff.lint]
ignore = [
"COM812",
"ISC001",
]
select = [
"F", # Pyflakes
"W", # pycodestyle (warnings)
"E", # pycodestyle (errors)
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"D", # pydocstyle
"UP", # pyupgrade
"YTT", # flake8-2020
"S", # flake8-bandit
"BLE", # flake8-blind-except
"FBT", # flake8-boolean-trap
"B", # flake8-bugbear
line-length = 100
lint.select = [
"A", # flake8-builtins
"COM", # flake8-commas
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"C90", # mccabe
"COM", # flake8-commas
"D", # pydocstyle
"DTZ", # flake8-datetimez
"E", # pycodestyle (errors)
"ERA", # eradicate
"F", # Pyflakes
"FA", # flake8-future-annotations
"ISC", # flake8-implicit-str-concat
"FBT", # flake8-boolean-trap
"FLY", # flynt
"FURB", # refurb
"G", # flake8-logging-format
"I", # isort
"INP", # flake8-no-pep420
"ISC", # flake8-implicit-str-concat
"LOG", # flake8-logging
"N", # pep8-naming
"PERF", # perflint
"PGH", # pygrep-hooks
"PIE", # flake8-pie
"T20", # flake8-print
"PL", # Pylint
"PT", # flake8-pytest-style
"PTH", # flake8-use-pathlib
"Q", # flake8-quotes
"RSE", # flake8-raise
"RET", # flake8-return
"SLF", # flake8-self
"RSE", # flake8-raise
"RUF", # Ruff-specific rules
"S", # flake8-bandit
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"SLF", # flake8-self
"T20", # flake8-print
"TCH", # flake8-type-checking
"ARG", # flake8-unused-arguments
"PTH", # flake8-use-pathlib
"ERA", # eradicate
"PGH", # pygrep-hooks
"PL", # Pylint
"TID", # flake8-tidy-imports
"TRY", # tryceratops
"FLY", # flynt
"PERF", # perflint
"FURB", # refurb
"LOG", # flake8-logging
"RUF", # Ruff-specific rules
"UP", # pyupgrade
"W", # pycodestyle (warnings)
"YTT", # flake8-2020
]
lint.per-file-ignores."tests/*" = [
"S101",
]
unfixable = [
lint.unfixable = [
"ERA",
]

[tool.ruff.lint.isort]
required-imports = [
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
lint.ignore = [
"COM812",
"ISC001",
]



[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101",
]


[tool.ruff.lint.pydocstyle]
convention = "google"

0 comments on commit 287613d

Please sign in to comment.