@hiddenability/opinionated-defaults 0.0.6 → 0.0.7
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/dist/prettier/astro.mjs +1 -3
- package/dist/prettier/base.mjs +4 -1
- package/dist/prettier/index.d.ts +1 -1
- package/dist/prettier/index.mjs +1 -1
- package/dist/prettier/tailwind.d.ts +3 -0
- package/dist/prettier/tailwind.mjs +5 -0
- package/package.json +3 -2
- package/dist/prettier/next.d.ts +0 -3
- package/dist/prettier/next.mjs +0 -8
package/dist/prettier/astro.mjs
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import baseConfig from "./base.mjs";
|
|
2
2
|
const astroConfig = {
|
|
3
3
|
...baseConfig,
|
|
4
|
-
plugins: ["prettier-plugin-astro"
|
|
5
|
-
tailwindStylesheet: "./src/styles/global.css",
|
|
6
|
-
tailwindFunctions: ["cva", "clsx", "cn"],
|
|
4
|
+
plugins: ["prettier-plugin-astro"],
|
|
7
5
|
overrides: [
|
|
8
6
|
{
|
|
9
7
|
files: "*.astro",
|
package/dist/prettier/base.mjs
CHANGED
|
@@ -8,6 +8,9 @@ const config = {
|
|
|
8
8
|
useTabs: false,
|
|
9
9
|
semi: true,
|
|
10
10
|
experimentalTernaries: true,
|
|
11
|
-
bracketSameLine: false
|
|
11
|
+
bracketSameLine: false,
|
|
12
|
+
plugins: ["@trivago/prettier-plugin-sort-imports"],
|
|
13
|
+
importOrderSeparation: true,
|
|
14
|
+
importOrderSortSpecifiers: true
|
|
12
15
|
};
|
|
13
16
|
export default config;
|
package/dist/prettier/index.d.ts
CHANGED
package/dist/prettier/index.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.7",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@eslint/js": "^9.29.0",
|
|
34
34
|
"@next/eslint-plugin-next": "^15.4.0-canary.83",
|
|
35
35
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
36
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
36
37
|
"eslint-config-prettier": "^10.1.5",
|
|
37
38
|
"eslint-plugin-astro": "^1.3.1",
|
|
38
39
|
"eslint-plugin-functional": "^9.0.2",
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"typescript-eslint": "^8.34.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
|
-
"@hiddenability/opinionated-defaults": "0.0.
|
|
52
|
+
"@hiddenability/opinionated-defaults": "^0.0.6",
|
|
52
53
|
"jiti": "^2.4.2",
|
|
53
54
|
"typescript": "^5.8.3",
|
|
54
55
|
"unbuild": "^3.5.0"
|
package/dist/prettier/next.d.ts
DELETED
package/dist/prettier/next.mjs
DELETED