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'], +)