mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-24 11:45:26 +03:00
23aa7db57d
* Add prettier sort * Fix prettier setting in eslint * Apply prettier * Fix depdencies * Add .yarn folder in excludes of vitest * Revert pick I don't know why this is changed
19 lines
610 B
JSON
19 lines
610 B
JSON
{
|
|
"search.exclude": {
|
|
"**/.yarn": true,
|
|
"**/.pnp.*": true
|
|
},
|
|
"eslint.nodePath": ".yarn/sdks",
|
|
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
|
|
"prettier.prettierPath": ".yarn/sdks/prettier/index.cjs",
|
|
"typescript.tsdk": ".yarn/sdks/typescript/lib",
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"deno.enablePaths": ["./.scripts/docs"],
|
|
"deno.config": "./.scripts/docs/deno.json",
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
}
|