Skip to content

Commit

Permalink
feat: add blog post, and update website
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed Sep 12, 2024
1 parent 12c0ee1 commit c204b71
Show file tree
Hide file tree
Showing 14 changed files with 5,546 additions and 82 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.87"
biome_flags = { git = "https://github.com/biomejs/biome.git", rev = "894c3c57303451e3b6d70fa7b225b9ef884a75a7" }
biome_flags = { git = "https://github.com/biomejs/biome.git", rev = "894c3c57303451e3b6d70fa7b225b9ef884a75a7" }
biome_analyze = { git = "https://github.com/biomejs/biome.git", rev = "894c3c57303451e3b6d70fa7b225b9ef884a75a7" }
biome_cli = { git = "https://github.com/biomejs/biome.git", rev = "894c3c57303451e3b6d70fa7b225b9ef884a75a7" }
biome_configuration = { git = "https://github.com/biomejs/biome.git", rev = "894c3c57303451e3b6d70fa7b225b9ef884a75a7" }
Expand Down
1 change: 1 addition & 0 deletions codegen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ fn main() -> anyhow::Result<()> {
CodegenCommand::Metadata => generate_json_metadata()?,
CodegenCommand::Env => {
generate_env_variables()?;
}
CodegenCommand::Diagnostics => {
generate_diagnostics()?;
}
Expand Down
1 change: 1 addition & 0 deletions src/assets/blog/biome-v1-9/biome-monthly-npm-downloads.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion src/components/generated/DefaultConfiguration.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@

```json title="biome.json"
{
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": { "ignoreUnknown": false, "ignore": [] },
"formatter": { "enabled": true, "indentStyle": "tab" },
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": { "recommended": true }
}
},
"javascript": { "formatter": { "quoteStyle": "double" } }
}

```
Loading

0 comments on commit c204b71

Please sign in to comment.