Skip to content

Commit 1dcb3b2

Browse files
committed
Move Biome config to project root
Resolves nested root configuration error in CI by moving biome.json from .config/ to project root. Updates ESLint config path reference.
1 parent cc331e0 commit 1dcb3b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.config/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const nodeGlobalsConfig = Object.fromEntries(
2727
Object.entries(globals.node).map(([k]) => [k, 'readonly']),
2828
)
2929

30-
const biomeConfigPath = path.join(rootPath, '.config', 'biome.json')
30+
const biomeConfigPath = path.join(rootPath, 'biome.json')
3131
const biomeConfig = require(biomeConfigPath)
3232
const biomeIgnores = {
3333
name: `Imported biome.json ignore patterns`,

.config/biome.json renamed to biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "../node_modules/@biomejs/biome/configuration_schema.json",
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"root": true,
44
"files": {
55
"includes": [

0 commit comments

Comments
 (0)