Skip to content

Commit 03e688e

Browse files
committed
feat: add tailwind config
1 parent 2f0d506 commit 03e688e

File tree

5 files changed

+210
-19
lines changed

5 files changed

+210
-19
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
{
44
"mode": "auto"
55
}
6-
]
6+
],
7+
"cSpell.words": ["clsx"]
78
}

packages/eslint-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @fellipeutaka/eslint-config
22

3+
## 1.12.0
4+
5+
### Minor Changes
6+
7+
- add tailwind config
8+
39
## 1.11.0
410

511
### Minor Changes

packages/eslint-config/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fellipeutaka/eslint-config",
3-
"version": "1.11.0",
3+
"version": "1.12.0",
44
"description": "ESLint configuration",
55
"private": false,
66
"homepage": "https://github.com/fellipeutaka/eslint-config",
@@ -48,7 +48,8 @@
4848
"eslint-plugin-promise": "latest",
4949
"eslint-plugin-react": "latest",
5050
"eslint-plugin-react-hooks": "latest",
51-
"eslint-plugin-react-native-a11y": "latest"
51+
"eslint-plugin-react-native-a11y": "latest",
52+
"eslint-plugin-tailwindcss": "^3.13.0"
5253
},
5354
"peerDependencies": {
5455
"eslint": "*",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"$schema": "https://json.schemastore.org/eslintrc",
3+
"extends": ["plugin:tailwindcss/recommended"],
4+
"settings": {
5+
"tailwindcss": {
6+
"callees": ["cn", "tv", "clsx", "classnames", "ctl", "cva"]
7+
}
8+
}
9+
}

0 commit comments

Comments
 (0)