Skip to content

Commit

Permalink
feat: add more ignored files (#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gumichocopengin8 authored and ematipico committed Nov 26, 2023
1 parent 963bfbc commit 23c477c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions crates/biome_fs/src/fs/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,15 @@ fn handle_dir_entry<'scope>(
Some(
"package.json"
| "package-lock.json"
| "npm-shrinkwrap.json"
| "yarn.lock"
| "composer.json"
| "composer.lock"
| "typescript.json"
| "tsconfig.json"
| "jsconfig.json"
| "deno.json"
| "deno.jsonc"
)
) {
return;
Expand Down
9 changes: 7 additions & 2 deletions website/src/content/docs/guides/how-biome-works.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,15 @@ The following files are currently ignored by Biome. This means that no diagnosti

- `package.json`
- `package-lock.json`
- `npm-shrinkwrap.json`
- `yarn.lock`
- `composer.json`
- `composer.lock`
- `typescript.json`
- `tsconfig.json`
- `jsconfig.json`
- `deno.json`
- `deno.jsonc`



Expand All @@ -87,5 +94,3 @@ The following files are parsed as **`JSON` files** with the options `json.parse
- `.swcrc`
- `.hintrc`
- `.babelrc`


0 comments on commit 23c477c

Please sign in to comment.