Created
December 18, 2018 10:49
-
-
Save Alexandre-cibot/132779d7986be26829c8accc1805bda1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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