# ember/template-no-debugger
💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
Disallows usage of `{{debugger}}` in templates.
The `{{debugger}}` helper is useful for debugging but should not be present in production code.
## Rule Details
This rule disallows the use of `{{debugger}}` statements in templates.
## Examples
Examples of **incorrect** code for this rule:
```gjs
{{debugger}}
Content
```
```gjs
{{#if condition}}
{{debugger}}
{{/if}}
```
Examples of **correct** code for this rule:
```gjs
Content
```
```gjs
{{this.debug}}
```
## Related Rules
- [no-debugger](https://eslint.org/docs/rules/no-debugger) from ESLint
## References
- [ember-template-lint no-debugger](https://github.com/ember-template-lint/ember-template-lint/blob/master/docs/rule/no-debugger.md)