mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
chore: update pre-commit to only use ruff
This commit is contained in:
parent
5c769fc905
commit
b378d47253
2 changed files with 5 additions and 11 deletions
|
@ -1,13 +1,9 @@
|
|||
# See https://pre-commit.com for more information
|
||||
# See https://pre-commit.com/hooks.html for more hooks
|
||||
repos:
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 23.3.0
|
||||
hooks:
|
||||
- id: black
|
||||
language_version: python
|
||||
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
||||
rev: 'v0.0.270'
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: v0.1.10
|
||||
hooks:
|
||||
- id: ruff
|
||||
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
|
||||
args: [ --fix ]
|
||||
- id: ruff-format
|
||||
|
|
|
@ -7,9 +7,7 @@ import sys
|
|||
old_sys_path = sys.path.copy() # noqa
|
||||
|
||||
|
||||
__import__("sys").path.append(
|
||||
__import__("os").path.expanduser("~/.local/share/viv")
|
||||
) # noqa # isort: off
|
||||
__import__("sys").path.append(__import__("os").path.expanduser("~/.local/share/viv")) # noqa # isort: off
|
||||
__import__("viv").use("rich") # noqa # isort: off
|
||||
|
||||
from difflib import unified_diff
|
||||
|
|
Loading…
Reference in a new issue