Vscode settings.json

(Settings.json에서 넘어옴)

1 개요[ | ]

vscode settings.json

2 예시 0[ | ]

{
  "editor.mouseWheelZoom": true,
  "editor.renderWhitespace": "all", 
  ...
}

3 예시 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"
  },
}

4 예시 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"
  },
}

5 예시 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",
  ],
}

6 예시 4[ | ]

{
    "remotefs.remote": {
      "choedu": {
        "scheme": "sftp",
        "host": "example.com",
        "port": 22,
        "username": "testuser01",
        "privateKeyPath": "C:/Documents/keys/mykey.pem",
        "rootPath": "/app"
      }
    }
  }

7 같이 보기[ | ]

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