# ember/template-no-forbidden-elements 💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations). This rule disallows the use of forbidden elements in template files. The rule is configurable so teams can add their own disallowed elements. The default list of forbidden elements are `meta`, `style`, `html`, and `script`. ## Examples This rule **forbids** the following: ```gjs ``` ```gjs ``` ```gjs ``` ```gjs ``` This rule **allows** the following: ```gjs ``` ```gjs ``` ```gjs ``` Note: `` inside `` is allowed as an exception. ## Configuration - `boolean` — `true` to enable with defaults / `false` to disable - `string[]` — an array of element names to forbid (default: `['meta', 'style', 'html', 'script']`) ## References - [Ember guides/template restrictions](https://guides.emberjs.com/release/components/#toc_restrictions)