Skip to content

Instantly share code, notes, and snippets.

@raphaelgoetter
Last active February 4, 2024 11:43
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 raphaelgoetter/6f1dae2743658cdf0fbc58b0fdbe5d62 to your computer and use it in GitHub Desktop.
Save raphaelgoetter/6f1dae2743658cdf0fbc58b0fdbe5d62 to your computer and use it in GitHub Desktop.
Paramètres pour VSCode
{
"editor.fontFamily": " Hack, 'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontSize": 18,
"editor.lineHeight": 2,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,
"editor.tabCompletion": "on",
"editor.linkedEditing": true,
"editor.defaultFormatter": null,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[md]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.enable": true,
"prettier.requireConfig": false,
"prettier.useEditorConfig": true,
"prettier.bracketSameLine": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": "explicit",
"source.fixAll.stylelint": "explicit"
},
// Seulement si stylelint utilisé sur le projet,
// sans stylelint on perdrait toute validation native
// "css.validate": false,
// "scss.validate": false,
// "less.validate": false,
"css.lint.unknownAtRules": "ignore",
"less.lint.unknownAtRules": "ignore",
"scss.lint.unknownAtRules": "ignore",
"eslint.format.enable": true,
"stylelint.enable": true,
"stylelint.config": null,
"stylelint.validate": ["css", "less", "postcss", "scss", "sass"],
"eslint.codeActionsOnSave.rules": null,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.bracketPairColorization.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.accessibilitySupport": "off",
"editor.unicodeHighlight.allowedCharacters": {
"️": true,
" ": true
},
"editor.parameterHints.enabled": false,
"editor.suggest.showReferences": false,
"scss.hover.references": false,
"html.hover.references": false,
"css.hover.references": false,
"less.hover.references": false,
"css.hover.documentation": false,
"less.hover.documentation": false,
"scss.hover.documentation": false,
"explorer.openEditors.visible": 1,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#05ef3c"
},
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"git.confirmSync": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/bower_components": true,
"**/jspm_packages": true,
"**/node_modules": true
},
"search.exclude": {
"/node_modules": true
},
"files.watcherExclude": {
"/node_modules/": true
},
"git.autofetch": true,
"git.enableSmartCommit": true,
"projectManager.groupList": true,
"projectManager.sortList": "Recent",
"security.workspace.trust.untrustedFiles": "newWindow",
"launch": {
"configurations": [],
"compounds": []
},
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/public"
},
{
"format": "compressed",
"extensionName": ".min.css",
"savePath": "/public"
}
],
"liveSassCompile.settings.useNewCompiler": true,
"liveSassCompile.settings.generateMap": false,
"files.associations": {
"*.html": "html",
"*.nunj": "html"
},
"git.ignoreMissingGitWarning": true,
"todo-tree.general.statusBar": "top three",
"todo-tree.tree.expanded": true,
"todo-tree.highlights.useColourScheme": true,
"todo-tree.highlights.backgroundColourScheme": [
"red",
"pink",
"orange",
"yellow",
"blue",
"indigo",
"violet"
],
"todo-tree.highlights.foregroundColourScheme": [
"white",
"black",
"black",
"black",
"white",
"white",
"black"
],
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"workbench.editor.empty.hint": "hidden",
"workbench.activityBar.location": "top",
"workbench.iconTheme": "vscode-icons",
"editor.wordWrap": "on",
"terminal.integrated.fontSize": 14,
"vsicons.dontShowNewVersionMessage": true,
"svgo.mergePaths": false,
"svgo.removeViewBox": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment