Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "workbench.colorTheme": "Visual Studio Dark",
- "editor.suggestSelection": "first",
- "eslint.options": {
- "envs": [
- "es6",
- "browser",
- "node"
- ],
- "parserOptions": {
- "ecmaVersion": 2018,
- "sourceType": "module",
- "ecmaFeatures": {
- "jsx": true
- }
- },
- "rules": {
- "semi": "error",
- "curly": "error",
- "quotes": [
- "warn",
- "single"
- ],
- "no-undef": "error"
- }
- },
- "eslint.alwaysShowStatus": true,
- "window.zoomLevel": 1,
- "workbench.startupEditor": "newUntitledFile",
- "eslint.format.enable": true,
- "launch": {
- "version": "0.2.0",
- "configurations": [
- {
- "args": [
- "-u",
- "bdd",
- "--timeout",
- "999999",
- "--colors",
- "${file}"
- ],
- "internalConsoleOptions": "openOnSessionStart",
- "name": "Mocha Tests",
- "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
- "request": "launch",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "type": "pwa-node"
- },
- {
- "type": "node",
- "request": "launch",
- "name": "Launch Program",
- "program": "${file}",
- "cwd": "${workspaceRoot}",
- }
- ]
- }
- }
Add Comment
Please, Sign In to add comment