Skip to content

Commit 7498ea5

Browse files
committed
add: updated laravel guide
1 parent a197392 commit 7498ea5

26 files changed

Lines changed: 2254 additions & 345 deletions

.laravel-guide/.prettierrc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"semi": true,
3+
"singleQuote": true,
4+
"singleAttributePerLine": false,
5+
"htmlWhitespaceSensitivity": "css",
6+
"printWidth": 80,
7+
"plugins": [
8+
"prettier-plugin-organize-imports",
9+
"prettier-plugin-tailwindcss"
10+
],
11+
"tailwindFunctions": [
12+
"clsx",
13+
"cn",
14+
"cva"
15+
],
16+
"tailwindStylesheet": "resources/css/app.css",
17+
"tabWidth": 4,
18+
"overrides": [
19+
{
20+
"files": "**/*.{yml,js,ts,vue}",
21+
"options": {
22+
"tabWidth": 2,
23+
"printWidth": 100
24+
}
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)