-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathultimate-nextjs-course.code-workspace
More file actions
47 lines (47 loc) · 1.14 KB
/
ultimate-nextjs-course.code-workspace
File metadata and controls
47 lines (47 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"folders": [
{
"path": "."
}
],
"settings": {
"prettier.configPath": ".prettierrc",
"prettier.prettierPath": "./node_modules/prettier",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always",
"source.organizeImports": "always",
"source.addMissingImports": "always"
},
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.classAttributes": [
"class",
"className",
"ngClass",
"defaultProps",
"styles"
],
"files.associations": {
"*.css": "tailwindcss",
"*.scss": "tailwindcss"
},
"markdownlint.config": {
"MD033": false
},
"cSpell.words": ["Autosize"],
"typescript.tsdk": "node_modules/typescript/lib"
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"yoavbls.pretty-ts-errors",
"christian-kohler.npm-intellisense",
"formulahendry.auto-complete-tag",
"bradlc.vscode-tailwindcss",
"burkeholland.simple-react-snippets",
"mongodb.mongodb-vscode",
"rangav.vscode-thunder-client"
]
}
}