Skip to content

Commit

Permalink
build: settings.json ์„ค์ •
Browse files Browse the repository at this point in the history
- ์ €์žฅํ• ์‹œ eslint ์ˆ˜์ •๋˜๋„๋ก
- flat Config ์„ค์ • -> vscode ๋‚ด์—์„œ eslint ์ธ์‹๋˜๋„๋ก
- prettier ๊ธฐ๋ณธ ํฌ๋งทํ„ฐ๋กœ ๋ณ€๊ฒฝ
- prettier, eslint ์‚ฌ์ด ์ถฉ๋Œ ๋ฐฉ์ง€

#81
  • Loading branch information
pipisebastian committed Nov 9, 2024
1 parent 3a6741c commit 2e560c1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.workingDirectories": [
{
"pattern": "./packages/*/"
}
],
"eslint.useFlatConfig": true,
"eslint.validate": ["javascript", "typescript", "javascriptreact", "html", "typescriptreact"],
"eslint.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
}
}

0 comments on commit 2e560c1

Please sign in to comment.