1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "sync.gist": "38a3beb36ad3969fc98c7e65e3d2095e",
- "git.path": "S:\\software\\Git\\cmd\\git.exe",
- "[typescript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "search.exclude": {
- "**/node_modules": false,
- "**/bower_components": true,
- "**/target": false,
- "**/logs": true
- },
- "editor.formatOnPaste": true,
- "javascript.updateImportsOnFileMove.enabled": "always",
- "files.encoding": "utf8",
- "files.autoGuessEncoding": false,
- "files.autoSave": "off",
- "files.eol": "\n",
- "editor.tabSize": 2,
- "git.autofetch": true,
- "editor.detectIndentation": false,
- "vetur.validation.template": false,
- // "eslint.autoFixOnSave": true,
- "eslint.validate": [
- "javascript",
- "javascriptreact",
- {
- "language": "vue",
- "autoFix": true
- },
- {
- "language": "html",
- "autoFix": true
- }
- ],
- "vetur.format.defaultFormatter.html": "js-beautify-html",
- "vetur.format.defaultFormatterOptions": {
- "js-beautify-html": {
- "wrap-line-length": 120,
- "wrap_attributes": "aligned-multiple",
- },
- "prettier": {
- "singleQuote": true,
- "trailingComma": "es5",
- "printWidth": 160,
- },
- },
- "vetur.format.defaultFormatter.js": "vscode-typescript",
- "git.confirmSync": false,
- "editor.suggestSelection": "first",
- "editor.cursorBlinking": "smooth",
- "files.watcherExclude": {
- "**/package-lock.json": true
- },
- "files.exclude": {
- "**/.settings": true,
- "**/.factorypath": true
- },
- "diffEditor.ignoreTrimWhitespace": true,
- "editor.quickSuggestions": {
- "strings": true
- },
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- }, // jade/pug quotes
- "prettier.printWidth": 180,
- "prettier.singleQuote": true,
- "prettier.trailingComma": "es5",
- "prettier.bracketSpacing": true,
- "editor.snippetSuggestions": "top",
- "[jsonc]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[vue]": {
- "editor.defaultFormatter": "octref.vetur"
- },
- }
|