@mkvlrn/config 3.0.5 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/package.json +3 -3
- package/src/biome.jsonc +6 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 Mike Valeriano <mkvlrn@gmail.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mkvlrn/config",
|
|
3
3
|
"description": "Opinionated configurations for biome and typescript",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"author": "Mike Valeriano <mkvlrn@
|
|
7
|
+
"author": "Mike Valeriano <mkvlrn@gmail.com>",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git@github.com:mkvlrn/tools"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"tsconfig"
|
|
17
17
|
],
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": "
|
|
19
|
+
"node": "24"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"src"
|
package/src/biome.jsonc
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.3.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
|
|
3
3
|
"root": false,
|
|
4
4
|
"assist": {
|
|
5
5
|
"actions": {
|
|
@@ -61,8 +61,12 @@
|
|
|
61
61
|
"useLiteralKeys": "off"
|
|
62
62
|
},
|
|
63
63
|
"correctness": {
|
|
64
|
-
//
|
|
64
|
+
// path alias already uses ts extensions
|
|
65
65
|
"useImportExtensions": "off"
|
|
66
|
+
},
|
|
67
|
+
"style": {
|
|
68
|
+
// this is a silly rule
|
|
69
|
+
"useExportsLast": "off"
|
|
66
70
|
}
|
|
67
71
|
}
|
|
68
72
|
}
|