Skip to content

Commit db3fb40

Browse files
committed
refactor(config): update linting and plugin settings
- Update tailwind plugin setting key - Reorder unicorn rules - Format package.json files array
1 parent 355320b commit db3fb40

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@
3333
"./package.json": "./package.json"
3434
},
3535
"types": "./dist/index.d.cts",
36-
"files": [
37-
"dist"
38-
],
36+
"files": ["dist"],
3937
"engines": {
4038
"node": ">=22.0.0",
4139
"pnpm": ">=11.0.0"

src/configs/tailwind.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export async function tailwind(options: TailwindConfigOptions): Promise<Array<Ty
8989
name: 'favorodera/tailwind/setup',
9090
plugins: { tailwind: tailwindPlugin },
9191
settings: {
92-
tailwind: resolved.settings,
92+
'better-tailwindcss': resolved.settings,
9393
},
9494
},
9595
{

src/configs/unicorn.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export async function unicorn(options: UnicornConfigOptions): Promise<Array<Type
4343
...baseRules,
4444

4545
'unicorn/filename-case': 'off',
46-
'unicorn/prevent-abbreviations': 'off',
4746
'unicorn/no-process-exit': 'off',
47+
'unicorn/prevent-abbreviations': 'off',
4848

4949
...resolved.overrides,
5050
},

0 commit comments

Comments
 (0)