svetlyoek

Untitled

Jun 30th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. {
  2. "workbench.colorTheme": "Visual Studio Dark",
  3. "editor.suggestSelection": "first",
  4. "eslint.options": {
  5. "envs": [
  6. "es6",
  7. "browser",
  8. "node"
  9. ],
  10. "parserOptions": {
  11. "ecmaVersion": 2018,
  12. "sourceType": "module",
  13. "ecmaFeatures": {
  14. "jsx": true
  15. }
  16. },
  17. "rules": {
  18. "semi": "error",
  19. "curly": "error",
  20. "quotes": [
  21. "warn",
  22. "single"
  23. ],
  24. "no-undef": "error"
  25. }
  26. },
  27. "eslint.alwaysShowStatus": true,
  28. "window.zoomLevel": 1,
  29. "workbench.startupEditor": "newUntitledFile",
  30. "eslint.format.enable": true,
  31. "launch": {
  32. "version": "0.2.0",
  33. "configurations": [
  34. {
  35. "args": [
  36. "-u",
  37. "bdd",
  38. "--timeout",
  39. "999999",
  40. "--colors",
  41. "${file}"
  42. ],
  43. "internalConsoleOptions": "openOnSessionStart",
  44. "name": "Mocha Tests",
  45. "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
  46. "request": "launch",
  47. "skipFiles": [
  48. "<node_internals>/**"
  49. ],
  50. "type": "pwa-node"
  51. },
  52. {
  53. "type": "node",
  54. "request": "launch",
  55. "name": "Launch Program",
  56. "program": "${file}",
  57. "cwd": "${workspaceRoot}",
  58. }
  59. ]
  60. }
  61. }
Add Comment
Please, Sign In to add comment