Revision f58dc115a6dd213fca2dda20e3ac3cd5f5539a53 authored by Rohit Singh on 12 April 2021, 10:22:57 UTC, committed by Rohit Singh on 12 April 2021, 10:22:57 UTC
2 parent s 89ef27f + f444987
Raw File
settings.json
{
  "javascript.validate.enable": true,
  "eslint.enable": false,
  "tslint.enable": true,
  "tslint.autoFixOnSave": true,
  "flow.enabled": false,
  "editor.tabSize": 2,
  "editor.insertSpaces": true,
  "editor.formatOnSave": true,
  "flow.useNPMPackagedFlow": true,
  "editor.formatOnPaste": false,
  "prettier.jsxSingleQuote": true,
  "prettier.singleQuote": true,

  // A list of languages IDs to disable this extension on
  "prettier.disableLanguages": ["vue"],

  // Path to a .prettierignore or similar file
  "prettier.ignorePath": ".prettierignore",
  // If true, puts the `>` of a multi-line jsx element at the end of the last line instead of being alone on the next line
  "editor.wordWrap": "on"
}
back to top