generated from cyrus01337/astro-app-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lintstagedrc
16 lines (16 loc) · 989 Bytes
/
.lintstagedrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"*.{ts,astro}": [
"biome format --write --skip-errors --no-errors-on-unmatched --changed --since=main --log-level=none --config-path external/configurations/biome/biome.json",
"biome lint --write --unsafe --skip-errors --no-errors-on-unmatched --changed --since=main --log-level=none --config-path external/configurations/biome/biome.json",
"eslint",
"tsc-files"
],
"*.{js,mjs,cjs}": [
"biome format --write --skip-errors --no-errors-on-unmatched --changed --since=main --log-level=none --config-path external/configurations/biome/biome.json",
"biome lint --write --unsafe --skip-errors --no-errors-on-unmatched --changed --since=main --log-level=none --config-path external/configurations/biome/biome.json",
"eslint"
],
"*.{json,md}": [
"biome format --write --skip-errors --no-errors-on-unmatched --changed --since=main --log-level=none --config-path external/configurations/biome/biome.json"
]
}