From 91cc3d95c6a0ee6ebc1fff2cee83271b452afe01 Mon Sep 17 00:00:00 2001 From: furedea <132188853+furedea@users.noreply.github.com> Date: Sat, 29 Aug 2026 15:06:35 +0900 Subject: [PATCH] chore: generalize ls-lint rules --- .ls-lint.yml | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/.ls-lint.yml b/.ls-lint.yml index 60681d0..1d05d2d 100644 --- a/.ls-lint.yml +++ b/.ls-lint.yml @@ -1,5 +1,7 @@ ls: .dir: regex:\.?[a-z0-9]+(-[a-z0-9]+)* + .md: regex:[a-z0-9]*([._][a-z0-9]+)* | regex:(README|CONTRIBUTING|CHANGELOG|AGENTS|CLAUDE|SKILL) + .yaml: regex:[a-z0-9]*([._][a-z0-9]+)* | regex:pnpm-(lock|workspace) .*: regex:[a-z0-9]*([._][a-z0-9]+)* ignore: @@ -7,21 +9,12 @@ ignore: - .direnv - result - result-* + - "{.venv,.uv-cache,.ruff_cache,.pytest_cache,.ipynb_checkpoints,__pycache__,node_modules,target}" + - "**/{.venv,.uv-cache,.ruff_cache,.pytest_cache,.ipynb_checkpoints,__pycache__,node_modules,target}" - docs/logs + - "**/docs/logs" - - README.md - - - pnpm-lock.yaml - - pnpm-workspace.yaml - - node_modules - - .pnpm-store - - dist - - build - - coverage - - .next - - out - - .nuxt - - .output - - .svelte-kit - - .turbo - - .vite + - "{.pnpm-store,.turbo,.vite}" + - "**/{.pnpm-store,.turbo,.vite}" + - "{dist,build,coverage,.next,out,.nuxt,.output,.svelte-kit}" + - "**/{dist,build,coverage,.next,out,.nuxt,.output,.svelte-kit}"