Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. {
  2. "rubocop": {
  3. "lint": true, //enable all lint cops.
  4. "only": [/* array: Run only the specified cop(s) and/or cops in the specified departments. */],
  5. "except": [/* array: Run all cops enabled by configuration except the specified cop(s) and/or departments. */],
  6. "forceExclusion": true, //Add --force-exclusion option
  7. "require": [/* array: Require Ruby files. */],
  8. "rails": true //Run extra rails cops
  9. },
  10. "ruby.lint": {
  11. "rubocop": true
  12. },
  13. "[ruby]": {
  14. "editor.formatOnSave": true
  15. },
  16. "ruby.format": "rubocop",
  17. "editor.formatOnSaveTimeout": 1500,
  18. "editor.tabSize": 2,
  19. "editor.fontSize": 13,
  20. "editor.fontFamily": "FiraCode-Retina",
  21. "editor.fontLigatures": true,
  22. "workbench.iconTheme": "material-icon-theme",
  23. "workbench.colorTheme": "Material Theme Darker High Contrast",
  24. "git.autofetch": true,
  25. "window.zoomLevel": 0,
  26. "explorer.confirmDragAndDrop": false,
  27. "terminal.integrated.rendererType": "dom",
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement