diff --git a/crates/biome_fs/src/fs/os.rs b/crates/biome_fs/src/fs/os.rs index 37371d34bb78..47517befb2f1 100644 --- a/crates/biome_fs/src/fs/os.rs +++ b/crates/biome_fs/src/fs/os.rs @@ -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; diff --git a/website/src/content/docs/guides/how-biome-works.mdx b/website/src/content/docs/guides/how-biome-works.mdx index 3503736d7395..0b3781e674ec 100644 --- a/website/src/content/docs/guides/how-biome-works.mdx +++ b/website/src/content/docs/guides/how-biome-works.mdx @@ -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` @@ -87,5 +94,3 @@ The following files are parsed as **`JSON` files** with the options `json.parse - `.swcrc` - `.hintrc` - `.babelrc` - -