"Vscode settings.json"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
3번째 줄: 3번째 줄:


==예시 1==
==예시 1==
<source lang='json'>
<syntaxhighlight lang='json'>
{
{
   "editor.mouseWheelZoom": true,
   "editor.mouseWheelZoom": true,
29번째 줄: 29번째 줄:
   },
   },
}
}
</source>
</syntaxhighlight>


==예시 2==
==예시 2==
<source lang='json'>
<syntaxhighlight lang='json'>
{
{
   "editor.mouseWheelZoom": true,
   "editor.mouseWheelZoom": true,
61번째 줄: 61번째 줄:
   },
   },
}
}
</source>
</syntaxhighlight>


==예시 3==
==예시 3==
<source lang='json'>
<syntaxhighlight lang='json'>
{
{
   "editor.mouseWheelZoom": true,
   "editor.mouseWheelZoom": true,
88번째 줄: 88번째 줄:
   ],
   ],
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:54 판

1 개요

vscode settings.json

2 예시 1

{
  "editor.mouseWheelZoom": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "eslint.format.enable": true,
  "eslint.workingDirectories": [
    "/app/frontend/"
  ],
  "extensions.autoUpdate": false,
  "extensions.autoCheckUpdates": false,
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/node_modules/*/**": true
  },
  "python.linting.pylintArgs": [
    "--load-plugins",
    "pylint_django"
  ],
  "terminal.integrated.shell.linux": "/bin/bash",
  "[vue]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint"
  },
}

3 예시 2

{
  "editor.mouseWheelZoom": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "eslint.format.enable": true,
  "eslint.workingDirectories": [
    "/app/frontend/"
  ],
  "extensions.autoUpdate": false,
  "extensions.autoCheckUpdates": false,
  "files.autoSave": "off",
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/node_modules/*/**": true
  },
  "terminal.integrated.shell.linux": "/bin/bash",
  "go.formatTool": "goreturns",
  "go.lintTool": "golangci-lint",
  "go.useLanguageServer": false,
  "[go]": {
    "editor.formatOnSave": true
  },
  "[vue]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint"
  },
}

4 예시 3

{
  "editor.mouseWheelZoom": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "eslint.format.enable": true,
  "eslint.workingDirectories": [
    "/app/frontend/"
  ],
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/node_modules/*/**": true
  },
  "remote.SSH.remotePlatform": {
    "devserver01": "linux"
  },
  "remote.SSH.defaultExtensions": [
    "octref.vetur",
    "ms-python.python",
    "dbaeumer.vscode-eslint",
  ],
}

5 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}