mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:21:14 +08:00
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
{
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2,
|
|
"eslint.format.enable": true,
|
|
"eslint.options": {
|
|
"cache": true,
|
|
"cacheLocation": ".cache/eslint",
|
|
"extensions": [".js", ".jsx", ".mjs", ".json", ".ts", ".tsx"]
|
|
},
|
|
"eslint.useESLintClass": true,
|
|
"eslint.validate": [
|
|
"json",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"html",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"eslint.workingDirectories": ["./code", "./scripts"],
|
|
"files.associations": {
|
|
"*.js": "javascriptreact"
|
|
},
|
|
"javascript.preferences.importModuleSpecifier": "relative",
|
|
"javascript.preferences.quoteStyle": "single",
|
|
"js/ts.implicitProjectConfig.target": "ESNext",
|
|
"prettier.ignorePath": "./code/.prettierignore",
|
|
"storyExplorer.storybookConfigDir": "./code/.storybook",
|
|
"typescript.format.enable": false,
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
"typescript.preferences.preferTypeOnlyAutoImports": true,
|
|
"typescript.preferences.quoteStyle": "single",
|
|
"typescript.preferGoToSourceDefinition": true,
|
|
"typescript.tsdk": "./code/node_modules/typescript/lib",
|
|
"vitest.workspaceConfig": "./code/vitest.workspace.ts"
|
|
}
|