Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.83 KB | None | 0 0
  1. {
  2.   "phpcs.enable": true,
  3.   "phpcs.standard": "~/.config/composer/vendor/drupal/coder/coder_sniffer/Drupal",
  4.     "breadcrumbs.enabled": true,
  5.     "css.validate": true,
  6.     "diffEditor.ignoreTrimWhitespace": false,
  7.     "editor.tabSize": 2,
  8.     "editor.autoIndent": true,
  9.     "editor.insertSpaces": true,
  10.     "editor.formatOnPaste": true,
  11.     "editor.formatOnSave": false,
  12.     "editor.renderWhitespace": "boundary",
  13.     "editor.wordWrapColumn": 80,
  14.     "editor.wordWrap": "off",
  15.     "editor.detectIndentation": true,
  16.     "editor.rulers": [
  17.       80
  18.     ],
  19.     "files.associations": {
  20.       "*.inc": "php",
  21.       "*.module": "php",
  22.       "*.install": "php",
  23.       "*.theme": "php",
  24.       "*.tpl.php": "php",
  25.       "*.test": "php",
  26.       "*.php": "php",
  27.       "*.html": "html"
  28.     },
  29.     "files.trimTrailingWhitespace": true,
  30.     "files.insertFinalNewline": true,
  31.     "html.format.enable": true,
  32.     "html.format.wrapLineLength": 80,
  33.     "telemetry.enableTelemetry": false,
  34.  
  35.     /* Empty Indent */
  36.     "emptyIndent.removeIndent": true,
  37.     "emptyIndent.highlightIndent": false,
  38.     "emptyIndent.highlightColor": "rgba(246,36,89,0.6)",
  39.  
  40.     /* Crane php intellisense */
  41.     "crane.showStatusBarBugReportLink": false,
  42.  
  43.     /* Ignore some D8 paths */
  44.     "crane.ignoredPaths": [
  45.       "docroot/sites/default/files/*",
  46.       "vendor/*",
  47.       "docroot/core/themes/*",
  48.       "docroot/core/tests/*",
  49.       "docroot/core/scripts/*",
  50.       "docroot/core/profiles/*",
  51.       "docroot/core/misc/*",
  52.       "docroot/core/assets/vendor/*",
  53.       "docroot/themes/*",
  54.       "docroot/sites/*"
  55.     ],
  56.     "workbench.colorCustomizations": {
  57.       "titleBar.activeForeground": "#000",
  58.       "titleBar.inactiveForeground": "#000000CC",
  59.       "titleBar.activeBackground": "#FFC600",
  60.       "titleBar.inactiveBackground": "#FFC600CC"
  61.     }
  62.  
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement