| 12345678910111213141516 |
- {
- //为了符合eslint的两个空格间隔原则
- "editor.tabSize": 2,
- //配置eslint
- "files.autoSave":"off",
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": true
- },
- "eslint.run": "onSave",
- // 控制是否将打开的编辑器显示为预览。预览编辑器将会重用至其被保留(例如,通过双击或编辑),且其字体样式将为斜体。
- "workbench.editor.enablePreview": false,
- "search.exclude": {
- "**/dist": true,
- "**/static": true
- }
- }
|