ember/template-no-aria-hidden-body
🔧 This rule is automatically fixable by the --fix CLI option.
The aria-hidden attribute should never be present on the <body> element, as it hides the entire document from assistive technology.
This rule forbids the following:
<template><body aria-hidden></template><template><body aria-hidden="true"></template>This rule allows the following:
<template><body></template>