Skip to content

Instantly share code, notes, and snippets.

@fieldAbyss
Last active April 28, 2019 06:55
Show Gist options
  • Save fieldAbyss/efc431d99adee9d099f1b61ad566186f to your computer and use it in GitHub Desktop.
Save fieldAbyss/efc431d99adee9d099f1b61ad566186f to your computer and use it in GitHub Desktop.
VS code settings.json
{
"editor.fontSize": 14,
"editor.fontFamily": "Ricty Diminished",
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": true,
"editor.renderControlCharacters": false,
"editor.suggestSelection": "first",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Slime",
"workbench.iconTheme": "material-icon-theme",
"typescript.check.npmIsInstalled": false,
"material-icon-theme.showUpdateMessage": false,
"update.mode": "none",
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.html": "html",
"*.erb": "html",
"*.ejs": "html",
"*.vue": "vue"
},
// Html, JavaScript, Vue
// vueにcssのemmet追加
"emmet.syntaxProfiles": {
"vue": "css"
},
// vueだけで追加したい設定
"[vue]": {
"editor.formatOnSave": true
},
"eslint.enable": true,
// 適応するファイルタイプを決定
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
{
"language": "vue",
"autoFix": true
}
],
// プロジェクト配下のeslintrc.jsを読み込み
"eslint.options": {
"configFile": ".eslintrc.json"
},
// 保存時に自動フォーマット
"eslint.autoFixOnSave": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"git.autofetch": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.lintOnSave": true,
"python.formatting.provider": "autopep8",
"python.envFile": "${workspaceFolder}/.env",
"python.jediEnabled": false,
"[python]": {
"editor.tabSize": 4,
"editor.formatOnSave": true
},
"[html]": {
"editor.tabSize": 2
},
"[javascript]": {
"editor.tabSize": 2
},
"[ruby]": {
"editor.tabSize": 2
},
"window.zoomLevel": 0,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"liveServer.settings.donotShowInfoMsg": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment