Mirror: 0.0.13

This commit is contained in:
Github Actions 2022-10-12 14:03:31 +00:00
parent d6a5d784b9
commit e59111e0ee
3 changed files with 21 additions and 7 deletions

View File

@ -1,7 +1,10 @@
- id: lint
name: ruff lint
description: Run ruff to lint Python files.
- id: ruff
name: ruff
description: 'Run ruff to lint Python files.'
entry: ruff
language: python
types_or: [python]
pass_filenames: true
'types': [python]
args: ["--fix"]
require_serial: false
additional_dependencies: []
minimum_pre_commit_version: '0'

1
.version Normal file
View File

@ -0,0 +1 @@
0.0.13

10
setup.py Normal file
View File

@ -0,0 +1,10 @@
from __future__ import annotations
from setuptools import setup
setup(
name='pre_commit_placeholder_package',
version='0.0.0',
install_requires=['ruff==0.0.13'],
)