Skip to content

Commit 0fa6584

Browse files
authored
Merge pull request #62 from ghiscoding/bugfix/avoid-barrel-files
fix: avoid barrel files, keep only 1 entry file
2 parents d170c0d + c9f34a0 commit 0fa6584

29 files changed

+1066
-1062
lines changed

biome.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010
"formatWithErrors": true,
1111
"lineWidth": 140,
1212
"indentStyle": "space",
13-
"ignore": [".cache", "dist/**", "**/*.json", "node_modules/**"]
13+
"ignore": [
14+
".cache",
15+
"dist/**",
16+
"**/*.json",
17+
"node_modules/**"
18+
]
1419
},
1520
"javascript": {
1621
"parser": {
@@ -34,14 +39,20 @@
3439
},
3540
"linter": {
3641
"enabled": true,
37-
"ignore": [".cache", "dist/**", "**/*.json", "node_modules/**"],
42+
"ignore": [
43+
".cache",
44+
"dist/**",
45+
"**/*.json",
46+
"node_modules/**"
47+
],
3848
"rules": {
3949
"recommended": true,
4050
"complexity": {
4151
"noForEach": "off",
4252
"noStaticOnlyClass": "off"
4353
},
4454
"performance": {
55+
"noBarrelFile": "off",
4556
"noDelete": "off"
4657
},
4758
"suspicious": {
@@ -60,4 +71,4 @@
6071
"enabled": false,
6172
"root": "./"
6273
}
63-
}
74+
}

0 commit comments

Comments
 (0)