Skip to content

Commit

Permalink
Add some linting exceptions for the json data
Browse files Browse the repository at this point in the history
  • Loading branch information
flenter committed Jun 5, 2024
1 parent d28dd12 commit 87e5f1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
}
},
"files": {
"ignore": ["meta/*.json", "test-content/*.*"]
"ignore": ["meta/*.json", "test-content/*.*", "seed-assets/*.json"]
}
}
8 changes: 7 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,16 @@
],
"files": {
"ignore": [
// API related
"meta/*.json",
"seed-assets/*.json",
"test-content/*.*",

// Client library related
"dist/*.js",
"dist/*.d.ts",
"test-content/*.*",

// Rust code related
"fpx/*.*"
]
}
Expand Down

0 comments on commit 87e5f1a

Please sign in to comment.