diff --git a/README.md b/README.md index 7aeafef..e2925c2 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below ```jsonc - // updated 2026-01-30 23:35 + // updated 2026-04-03 09:21 // https://github.com/antfu/vscode-file-nesting-config "explorer.fileNesting.enabled": true, "explorer.fileNesting.expand": false, @@ -47,6 +47,7 @@ Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below "build-wrapper.log": "build-wrapper*.log, build-wrapper-dump*.json, build-wrapper-win*.exe, build-wrapper-linux*, build-wrapper-macosx*", "BUILD.bazel": "*.bzl, *.bazel, *.bazelrc, bazel.rc, .bazelignore, .bazelproject, .bazelversion, MODULE.bazel.lock, WORKSPACE", "Cargo.toml": ".clippy.toml, .rustfmt.toml, Cargo.Bazel.lock, Cargo.lock, clippy.toml, cross.toml, insta.yaml, rust-toolchain.toml, rustfmt.toml", + "Chart.yaml": "Chart.lock, values.yaml, values-*.yaml, .helmignore", "CMakeLists.txt": "*.cmake, *.cmake.in, .cmake-format.yaml, CMakePresets.json, CMakeCache.txt", "composer.json": ".php*.cache, composer.lock, phpunit.xml*, psalm*.xml", "default.nix": "shell.nix", @@ -59,6 +60,7 @@ Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below "go.work": "go.work.sum", "hatch.toml": ".editorconfig, .flake8, .isort.cfg, .python-version, hatch.toml, requirements*.in, requirements*.pip, requirements*.txt, tox.ini", "I*.cs": "$(capture).cs", + "main.tf": "*.tf, .terraform.lock.hcl, terraform.tfstate, terraform.tfstate.backup, terraform.tfvars, *.tfvars, .terraformrc", "Makefile": "*.mk", "mix.exs": ".credo.exs, .dialyzer_ignore.exs, .formatter.exs, .iex.exs, .tool-versions, mix.lock", "next.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, content.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, next-env.d.ts, next-i18next.config.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, react-router.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", diff --git a/update.mjs b/update.mjs index f2df134..4740654 100644 --- a/update.mjs +++ b/update.mjs @@ -550,6 +550,7 @@ const base = { 'application.properties': '*.properties', 'build-wrapper.log': 'build-wrapper*.log, build-wrapper-dump*.json, build-wrapper-win*.exe, build-wrapper-linux*, build-wrapper-macosx*', 'BUILD.bazel': '*.bzl, *.bazel, *.bazelrc, bazel.rc, .bazelignore, .bazelproject, .bazelversion, MODULE.bazel.lock, WORKSPACE', + 'Chart.yaml': 'Chart.lock, values.yaml, values-*.yaml, .helmignore', 'CMakeLists.txt': '*.cmake, *.cmake.in, .cmake-format.yaml, CMakePresets.json, CMakeCache.txt', 'default.nix': 'shell.nix', 'flake.nix': 'default.nix, shell.nix, flake.lock', @@ -557,6 +558,7 @@ const base = { 'go.work': 'go.work.sum', 'I*.cs': '$(capture).cs', 'Makefile': '*.mk', + 'main.tf': '*.tf, .terraform.lock.hcl, terraform.tfstate, terraform.tfstate.backup, terraform.tfvars, *.tfvars, .terraformrc', 'pom.xml': 'mvnw*', 'shims.d.ts': '*.d.ts', }