Skip to content

Commit 51f60d7

Browse files
make biome ignore snapshot files
1 parent f42e5db commit 51f60d7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

biome.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"enabled": true,
55
"ignore": [
66
"frontend/javascripts/test/*",
7-
"frontend/javascripts/viewer/model/helpers/shader_editor.ts"
7+
"frontend/javascripts/viewer/model/helpers/shader_editor.ts",
8+
"**/__snapshots__/**"
89
]
910
},
1011
"linter": {
@@ -19,7 +20,8 @@
1920
"libs/parse_stl_buffer.ts",
2021
"libs/trackball_controls.ts",
2122
"*.d.ts",
22-
"frontend/javascripts/test/snapshots/*"
23+
"frontend/javascripts/test/snapshots/*",
24+
"**/__snapshots__/**"
2325
],
2426
"rules": {
2527
"recommended": true,
@@ -95,7 +97,8 @@
9597
"libs/BufferGeometryUtils.ts",
9698
"libs/parse_stl_buffer.ts",
9799
"libs/trackball_controls.ts",
98-
"*.d.ts"
100+
"*.d.ts",
101+
"**/__snapshots__/**"
99102
]
100103
},
101104
"overrides": [

0 commit comments

Comments
 (0)