@hiddenability/opinionated-defaults 0.0.21 → 0.0.22
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/README.md +3 -1
- package/dist/eslint/base.mjs +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -53,6 +53,7 @@ A collection of opinionated tooling configurations.
|
|
|
53
53
|
|
|
54
54
|
- [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro)
|
|
55
55
|
- [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss)
|
|
56
|
+
- [prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports)
|
|
56
57
|
|
|
57
58
|
## Installation:
|
|
58
59
|
|
|
@@ -105,7 +106,8 @@ const prettierConfig = merge(
|
|
|
105
106
|
prettierConfig2,
|
|
106
107
|
{
|
|
107
108
|
/* your custom rules */
|
|
108
|
-
}
|
|
109
|
+
},
|
|
110
|
+
/*...*/
|
|
109
111
|
);
|
|
110
112
|
|
|
111
113
|
export default prettierConfig;
|
package/dist/eslint/base.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiddenability/opinionated-defaults",
|
|
3
3
|
"description": "Opinionated default configurations for dev tools.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.22",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"eslint": "^9.
|
|
32
|
-
"prettier": "3.
|
|
33
|
-
"@eslint/js": "^9.
|
|
34
|
-
"@next/eslint-plugin-next": "^15.
|
|
35
|
-
"@stylistic/eslint-plugin": "^
|
|
31
|
+
"eslint": "^9.30.1",
|
|
32
|
+
"prettier": "3.6.2",
|
|
33
|
+
"@eslint/js": "^9.30.1",
|
|
34
|
+
"@next/eslint-plugin-next": "^15.3.5",
|
|
35
|
+
"@stylistic/eslint-plugin": "^5.1.0",
|
|
36
36
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
37
|
-
"@types/lodash": "^4.17.
|
|
37
|
+
"@types/lodash": "^4.17.20",
|
|
38
38
|
"eslint-config-prettier": "^10.1.5",
|
|
39
39
|
"eslint-plugin-astro": "^1.3.1",
|
|
40
40
|
"eslint-plugin-functional": "^9.0.2",
|
|
41
41
|
"eslint-plugin-no-relative-import-paths": "^1.6.1",
|
|
42
42
|
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
|
|
43
|
-
"eslint-plugin-prettier": "^5.5.
|
|
43
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
44
44
|
"eslint-plugin-react": "^7.37.5",
|
|
45
45
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
46
46
|
"eslint-plugin-solid": "^0.14.5",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"jiti": "^2.4.2",
|
|
50
50
|
"lodash": "^4.17.21",
|
|
51
51
|
"prettier-plugin-astro": "^0.14.1",
|
|
52
|
-
"prettier-plugin-tailwindcss": "0.6.
|
|
53
|
-
"typescript-eslint": "^8.
|
|
52
|
+
"prettier-plugin-tailwindcss": "0.6.13",
|
|
53
|
+
"typescript-eslint": "^8.36.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@hiddenability/opinionated-defaults": "^0.0.
|
|
57
|
-
"@types/bun": "^1.2.
|
|
56
|
+
"@hiddenability/opinionated-defaults": "^0.0.21",
|
|
57
|
+
"@types/bun": "^1.2.18",
|
|
58
58
|
"typescript": "^5.8.3",
|
|
59
59
|
"unbuild": "^3.5.0",
|
|
60
60
|
"vitest": "^3.2.4"
|