Advertisement
yumetodo

vscode-setting.json

Aug 7th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.31 KB | None | 0 0
  1. // 既定の設定を上書きするには、このファイル内に設定を挿入します
  2. {
  3.     // Controls the font family.
  4.     "editor.fontFamily": "consolas,'IPAexゴシック',Meiryo",
  5.     // ウィンドウ幅に合わせて折り返し
  6.     "editor.wrappingColumn": 0,
  7.     // 半角スペースやタブの表示
  8.     "editor.renderWhitespace": true,
  9.  
  10.     //-------- Markdown preview configuration --------
  11.     "markdown.styles": [
  12.         "'C:/Program Files (x86)/Microsoft VS Code/resources/app/out/vs/languages/markdown/common/github.css'",
  13.         "'C:/Program Files (x86)/Microsoft VS Code/resources/app/out/vs/languages/markdown/common/user.css'"
  14.     ],
  15.     // A list of URLs or local paths to CSS style sheets to use from the markdown preview.
  16.     "files.associations":{
  17.         "*.gs" : "javascript"
  18.     },
  19.  
  20.     //-------- eslint configuration --------
  21.     "eslint.enable": true,
  22.     "javascript.validate.enable": false,
  23.     "eslint.options": {
  24.     "rules": {
  25.       "quotes": [
  26.         2,
  27.         "double"
  28.       ],
  29.       "linebreak-style": [
  30.         2,
  31.         "windows"
  32.       ],
  33.       "semi": [
  34.         2,
  35.         "always"
  36.       ],
  37.       "no-console": 0
  38.     },
  39.     "env": {
  40.       "es6": true,
  41.       "node": true,
  42.       "browser": true
  43.     },
  44.     "extends": "eslint:recommended"
  45.   }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement