From e59111e0eebb24832aa1f1463006b0ad3f640ea8 Mon Sep 17 00:00:00 2001 From: Github Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Oct 2022 14:03:31 +0000 Subject: [PATCH] Mirror: 0.0.13 --- .pre-commit-hooks.yaml | 17 ++++++++++------- .version | 1 + setup.py | 10 ++++++++++ 3 files changed, 21 insertions(+), 7 deletions(-) create mode 100644 .version create mode 100644 setup.py diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 5c0f648..2227c61 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,7 +1,10 @@ -- id: lint - name: ruff lint - description: Run ruff to lint Python files. - entry: ruff - language: python - types_or: [python] - pass_filenames: true +- id: ruff + name: ruff + description: 'Run ruff to lint Python files.' + entry: ruff + language: python + 'types': [python] + args: ["--fix"] + require_serial: false + additional_dependencies: [] + minimum_pre_commit_version: '0' diff --git a/.version b/.version new file mode 100644 index 0000000..43b2961 --- /dev/null +++ b/.version @@ -0,0 +1 @@ +0.0.13 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c51aa58 --- /dev/null +++ b/setup.py @@ -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'], +)