Skip to content

Commit 5a9cfc1

Browse files
renovate[bot]morewings
authored andcommitted
Enable Tailwind CSS
1 parent a3cc864 commit 5a9cfc1

File tree

16 files changed

+273
-84
lines changed

16 files changed

+273
-84
lines changed

.github/workflows/pull-request-jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Node.js CI
55

66
on:
77
pull_request:
8-
branches: [ master ]
8+
branches: ["master", "tailwind"]
99

1010
jobs:
1111
lint-test:

.stylelintrc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,15 @@
1515
"at-rule-no-vendor-prefix": true,
1616
"selector-no-vendor-prefix": true,
1717
"max-nesting-depth": 3,
18-
"selector-max-compound-selectors": 5
18+
"selector-max-compound-selectors": 5,
19+
"at-rule-no-unknown": [
20+
true,
21+
{
22+
"ignoreAtRules": [
23+
"tailwind"
24+
]
25+
}
26+
]
1927
},
2028
"plugins": [
2129
"stylelint-order"

generate-react-cli.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"withHookTest": true,
1717
"customTemplates": {
1818
"component": "templates/Component/TemplateName.tsx",
19-
"style": "templates/Component/TemplateName.module.css",
2019
"story": "templates/Component/TemplateName.stories.tsx",
2120
"index": "templates/Component/index.ts",
2221
"mdx": "templates/Component/TemplateName.mdx",

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
"eslint-plugin-react-refresh": "0.4.7",
9292
"eslint-plugin-ssr-friendly": "1.3.0",
9393
"eslint-plugin-storybook": "0.8.0",
94+
"eslint-plugin-tailwindcss": "3.15.1",
9495
"generate-react-cli": "8.4.6",
9596
"husky": "9.0.11",
9697
"identity-obj-proxy": "3.0.0",
@@ -110,6 +111,7 @@
110111
"stylelint-config-standard": "36.0.0",
111112
"stylelint-order": "6.0.4",
112113
"stylelint-prettier": "5.0.0",
114+
"tailwindcss": "3.4.3",
113115
"ts-jest": "29.1.4",
114116
"ts-node": "10.9.2",
115117
"typescript": "5.4.5",

0 commit comments

Comments
 (0)