Skip to content

Instantly share code, notes, and snippets.

@duggiefresh
Created March 30, 2017 00:54
Show Gist options
  • Save duggiefresh/8ced48c305eefba94732738654688967 to your computer and use it in GitHub Desktop.
Save duggiefresh/8ced48c305eefba94732738654688967 to your computer and use it in GitHub Desktop.
VS Code `launch.json` for ember-template-lint
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "mocha",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"--no-timeouts",
"--colors"
], //you can specify paths to specific tests here
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"env": {
"NODE_ENV": "testing"
}
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 5858
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment