Mirror: 0.0.290

This commit is contained in:
Github Actions 2023-09-15 21:21:00 +00:00
parent 0b90c17c1a
commit 55147f81dc
3 changed files with 12 additions and 22 deletions

View File

@ -1,20 +1,10 @@
- id: ruff
name: ruff
description: "Run 'ruff' for extremely fast Python linting"
entry: ruff check --force-exclude
language: python
"types_or": [python, pyi]
args: []
require_serial: true
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"
- id: ruff-format
name: ruff-format
description: "Run 'ruff format' for extremely fast Python formatting"
entry: ruff format --force-exclude
language: python
"types_or": [python, pyi]
args: []
require_serial: true
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"
- id: ruff
name: ruff
description: "Run 'ruff' for extremely fast Python linting"
entry: ruff check --force-exclude
language: python
'types_or': [python, pyi]
args: []
require_serial: true
additional_dependencies: []
minimum_pre_commit_version: '2.9.2'

View File

@ -1 +1 @@
0.0.289
0.0.290

View File

@ -6,5 +6,5 @@ from setuptools import setup
setup(
name='pre_commit_placeholder_package',
version='0.0.0',
install_requires=['ruff==0.0.289'],
install_requires=['ruff==0.0.290'],
)