Skip to content

Commit 52b47c4

Browse files
authored
feat: add typedoc* config file (#29)
Co-authored-by: hubvue <hubvue@users.noreply.github.com>
1 parent ebc11fc commit 52b47c4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ With some scripts to avoid duplication of works. And it's very opinionated.
1414
Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below, and you are good to go :)
1515

1616
```jsonc
17-
// updated 2022-03-08 07:16
17+
// updated 2022-03-08 08:12
1818
// https://github.com/antfu/vscode-file-nesting-config
1919
"explorer.experimental.fileNesting.enabled": true,
2020
"explorer.experimental.fileNesting.expand": false,
@@ -29,7 +29,7 @@ Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below
2929
"go.mod": ".air*, go.sum",
3030
".env": "*.env, .env*, env.d.ts",
3131
"dockerfile": ".dockerignore, dockerfile*",
32-
"package.json": ".browserslist*, .circleci*, .codecov, .commitlint*, .editorconfig, .eslint*, .flowconfig, .gitlab*, .gitpod*, .huskyrc*, .jshintrc, .markdownlint*, .mocha*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnpm*, .prettier*, .releaserc*, .sentry*, .stackblitz*, .stylelint*, .tazerc*, .textlint*, .travis*, .vscode*, .watchman*, .yamllint*, .yarnrc*, api-extractor.json, appveyor*, ava.config.*, azure-pipelines*, build.config.*, commitlint*, crowdin*, cypress.json, dangerfile*, gulp*, jasmine.*, jenkins*, jest.config.*, jsconfig.*, karma*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, nx.*, package-lock.json, playwright.config.*, pm2.*, pnpm*, prettier*, pullapprove*, puppeteer.config.*, renovate*, rollup.config.*, stylelint*, tsconfig.*, tsdoc.*, tslint*, tsup.config.*, turbo*, vercel*, vetur.config.*, vitest.config.*, webpack.config.*, workspace.json, yarn*",
32+
"package.json": ".browserslist*, .circleci*, .codecov, .commitlint*, .editorconfig, .eslint*, .flowconfig, .gitlab*, .gitpod*, .huskyrc*, .jshintrc, .markdownlint*, .mocha*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnpm*, .prettier*, .releaserc*, .sentry*, .stackblitz*, .stylelint*, .tazerc*, .textlint*, .travis*, .vscode*, .watchman*, .yamllint*, .yarnrc*, api-extractor.json, appveyor*, ava.config.*, azure-pipelines*, build.config.*, commitlint*, crowdin*, cypress.json, dangerfile*, gulp*, jasmine.*, jenkins*, jest.config.*, jsconfig.*, karma*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, nx.*, package-lock.json, playwright.config.*, pm2.*, pnpm*, prettier*, pullapprove*, puppeteer.config.*, renovate*, rollup.config.*, stylelint*, tsconfig.*, tsdoc.*, tslint*, tsup.config.*, turbo*, typedoc*, vercel*, vetur.config.*, vitest.config.*, webpack.config.*, workspace.json, yarn*",
3333
"readme.md": "authors, backers.md, changelog*.md, code_of_conduct.md, codeowners, contributing.md, contributors, copying, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors.md",
3434
"cargo.toml": "cargo.lock, rust-toolchain.toml, rustfmt.toml",
3535
"gemfile": ".ruby-version, gemfile.lock",

update.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ const packageJSON = [
129129
'pm2.*',
130130
'vetur.config.*',
131131
'nest-cli.*',
132+
'typedoc*',
132133
...workspaces,
133134
...buildTools,
134135
...services,
@@ -164,7 +165,7 @@ const cargo = [
164165

165166
const gofile = [
166167
'go.sum',
167-
'.air*',
168+
'.air*'
168169
]
169170

170171
const gemfile = [

0 commit comments

Comments
 (0)