fix: rename

This commit is contained in:
Barrett Ruth 2025-10-23 22:17:49 -04:00
parent 00fe1abcf1
commit 57b4a3ff15
5 changed files with 7 additions and 16 deletions

View file

@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- "*"
- '*'
workflow_dispatch:
jobs:

View file

@ -1,16 +1,8 @@
{
"runtime.version": "Lua 5.1",
"runtime.path": [
"lua/?.lua",
"lua/?/init.lua"
],
"diagnostics.globals": [
"vim"
],
"workspace.library": [
"$VIMRUNTIME/lua",
"${3rd}/luv/library"
],
"runtime.path": ["lua/?.lua", "lua/?/init.lua"],
"diagnostics.globals": ["vim"],
"workspace.library": ["$VIMRUNTIME/lua", "${3rd}/luv/library"],
"workspace.checkThirdParty": false,
"completion.callSnippet": "Replace"
}

View file

@ -1,4 +1,4 @@
minimum_pre_commit_version: "3.5.0"
minimum_pre_commit_version: '3.5.0'
repos:
- repo: https://github.com/JohnnyMorganz/StyLua
@ -17,7 +17,7 @@ repos:
files: \.py$
- id: ruff
name: ruff (lint imports)
args: ["--fix", "--select=I"]
args: ['--fix', '--select=I']
files: \.py$
- repo: local
@ -26,7 +26,7 @@ repos:
name: mypy (type check)
entry: uv run mypy
language: system
args: ["."]
args: ['.']
pass_filenames: false
- repo: https://github.com/pre-commit/mirrors-prettier
@ -35,4 +35,3 @@ repos:
- id: prettier
name: prettier (format markdown)
files: \.md$