Skip to content

Commit

Permalink
VSCode fileNesting: .jsx and .css files (#2257)
Browse files Browse the repository at this point in the history
  • Loading branch information
r100-stack authored Sep 23, 2024
1 parent 3df74c0 commit f800d53
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@
},
"javascript.format.semicolons": "insert",
"javascript.preferences.quoteStyle": "single",
"stylelint.validate": ["scss"],
"prettier.documentSelectors": ["**/*.astro"],
"stylelint.validate": [
"scss"
],
"prettier.documentSelectors": [
"**/*.astro"
],
"typescript.tsdk": "node_modules/typescript/lib",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
Expand All @@ -35,6 +39,7 @@
"*.astro": "${capture}.tsx, ${capture).css, ${capture}.scss",
"*.ts": "${capture}.test.ts",
"*.tsx": "${capture}.ts, ${capture}.css, ${capture}.test.tsx",
"*.jsx": "${capture}.css",
"*.stories.tsx": "${capture}.test.ts",
".env": ".env.*"
},
Expand Down

0 comments on commit f800d53

Please sign in to comment.