Benny Powers - עם ישראל חי!

Results 326 issues of Benny Powers - עם ישראל חי!

## What I did 1. Add a Custom Elements Manifest page under "Tools" 2. install `rocket-preset-code-tabs` 3. add code tabs for npm/yarn/pnpm in a few places 4. **👉drop tests for...

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/control-has-associated-label.md From the docs: > Enforce that a control (an interactive element) has a text label. > > There are two supported ways to supply a control with a...

enhancement

See: https://raw.githubusercontent.com/jsx-eslint/eslint-plugin-jsx-a11y/master/docs/rules/media-has-caption.md # media-has-caption Providing captions for media is essential for deaf users to follow along. Captions should be a transcription or translation of the dialogue, sound effects, relevant musical...

enhancement

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-interactive-element-to-noninteractive-role.md # no-interactive-element-to-noninteractive-role Interactive HTML elements indicate _controls_ in the user interface. Interactive elements include ``, ``, ``, ``, ``. Non-interactive HTML elements and non-interactive ARIA roles indicate _content_...

enhancement

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-element-interactions.md # no-noninteractive-element-interactions Non-interactive HTML elements and non-interactive ARIA roles indicate _content_ and _containers_ in the user interface. A non-interactive element does not support event handlers (mouse and key...

enhancement

see: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-tabindex.md # no-noninteractive-tabindex Tab key navigation should be limited to elements on the page that can be interacted with. Thus it is not necessary to add a tabindex to...

enhancement

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-static-element-interactions.md # no-static-element-interactions Static HTML elements do not have semantic meaning. This is clear in the case of `` and ``. It is less so clear in the case...

enhancement

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-element-to-interactive-role.md # no-noninteractive-element-to-interactive-role Non-interactive HTML elements indicate _content_ and _containers_ in the user interface. Non-interactive elements include ``, ``, `` (,``, etc), ``, ``, `` and ``. Interactive HTML...

enhancement

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/label-has-associated-control.md # label-has-associated-control Enforce that a label tag has a text label and an associated control. There are two supported ways to associate a label with a control: -...

enhancement

See: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/interactive-supports-focus.md > Elements with an interactive role and interaction handlers (mouse or key press) must be focusable. ### Succeed ```js html` void 0}> Click me! Click me too! Click...

enhancement