Skip to content

Instantly share code, notes, and snippets.

@Alexandre-cibot
Created December 18, 2018 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alexandre-cibot/132779d7986be26829c8accc1805bda1 to your computer and use it in GitHub Desktop.
Save Alexandre-cibot/132779d7986be26829c8accc1805bda1 to your computer and use it in GitHub Desktop.
// Placez vos paramètres dans ce fichier pour remplacer les paramètres par défaut
{
// Use ZSH as the integrated terminal shell
"terminal.integrated.shell.osx": "zsh",
"workbench.colorTheme": "Atom One Dark",
"editor.tabSize": 2,
"window.zoomLevel": 1,
// "sublimeTextKeymap.promptV3Features": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
// "workbench.panel.location": "bottom",
"gitlens.keymap": "alternate",
"gitlens.historyExplorer.enabled": true,
"files.autoSave": "off",
"workbench.settings.editor": "json",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"editor.formatOnSave": false,
"editor.trimAutoWhitespace": false,
"files.insertFinalNewline": false,
// Prettier config
// "prettier.semi": false,
// "prettier.singleQuote": true,
// eslint
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
}
],
"eslint.packageManager": "yarn",
"javascript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment