fix: rename
This commit is contained in:
parent
00fe1abcf1
commit
57b4a3ff15
5 changed files with 7 additions and 16 deletions
|
|
@ -3,7 +3,7 @@ name: Release
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "*"
|
- '*'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
14
.luarc.json
14
.luarc.json
|
|
@ -1,16 +1,8 @@
|
||||||
{
|
{
|
||||||
"runtime.version": "Lua 5.1",
|
"runtime.version": "Lua 5.1",
|
||||||
"runtime.path": [
|
"runtime.path": ["lua/?.lua", "lua/?/init.lua"],
|
||||||
"lua/?.lua",
|
"diagnostics.globals": ["vim"],
|
||||||
"lua/?/init.lua"
|
"workspace.library": ["$VIMRUNTIME/lua", "${3rd}/luv/library"],
|
||||||
],
|
|
||||||
"diagnostics.globals": [
|
|
||||||
"vim"
|
|
||||||
],
|
|
||||||
"workspace.library": [
|
|
||||||
"$VIMRUNTIME/lua",
|
|
||||||
"${3rd}/luv/library"
|
|
||||||
],
|
|
||||||
"workspace.checkThirdParty": false,
|
"workspace.checkThirdParty": false,
|
||||||
"completion.callSnippet": "Replace"
|
"completion.callSnippet": "Replace"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
minimum_pre_commit_version: "3.5.0"
|
minimum_pre_commit_version: '3.5.0'
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/JohnnyMorganz/StyLua
|
- repo: https://github.com/JohnnyMorganz/StyLua
|
||||||
|
|
@ -17,7 +17,7 @@ repos:
|
||||||
files: \.py$
|
files: \.py$
|
||||||
- id: ruff
|
- id: ruff
|
||||||
name: ruff (lint imports)
|
name: ruff (lint imports)
|
||||||
args: ["--fix", "--select=I"]
|
args: ['--fix', '--select=I']
|
||||||
files: \.py$
|
files: \.py$
|
||||||
|
|
||||||
- repo: local
|
- repo: local
|
||||||
|
|
@ -26,7 +26,7 @@ repos:
|
||||||
name: mypy (type check)
|
name: mypy (type check)
|
||||||
entry: uv run mypy
|
entry: uv run mypy
|
||||||
language: system
|
language: system
|
||||||
args: ["."]
|
args: ['.']
|
||||||
pass_filenames: false
|
pass_filenames: false
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
|
|
@ -35,4 +35,3 @@ repos:
|
||||||
- id: prettier
|
- id: prettier
|
||||||
name: prettier (format markdown)
|
name: prettier (format markdown)
|
||||||
files: \.md$
|
files: \.md$
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue