
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
eslint-plugin-lit-a11y
Advanced tools
Accessibility linting plugin for lit-html.
Most of the rules are ported from eslint-plugin-jsx-a11y, and made to work with lit-html templates and custom elements.
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-lit-a11y
:
$ npm install eslint-plugin-lit-a11y@next --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-lit-a11y
globally.
Add lit-a11y
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["lit-a11y"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"lit-a11y/rule-name": 2
}
}
You may also extend the recommended configuration like so:
{
"extends": ["plugin:lit-a11y/recommended"]
}
By default, any tagged template literal that starts with html
is linted. Example:
html` <img /> `;
It could be the case, however, that you're using multiple rendering libraries in a project, like for example htm
, which also uses a html
tagged template literal, but has a slightly different syntax than lit-html. In this case you can specify the following option, to make sure only lit-html tagged template literals are linted:
{
"settings": {
"litHtmlSources": true
}
}
This will cause the plugin to lint only html
tagged template literals that are imported from either 'lit'
, 'lit-element'
or 'lit-html'
.
If you're importing lit-html from a package that re-exports lit-html, like for example @apollo-elements/lit-apollo
, you can specify @apollo-elements/lit-apollo
as a valid litHtmlSource like so:
{
"settings": {
"litHtmlSources": ["@apollo-elements/lit-apollo"]
}
}
FAQs
linting plugin for lit-a11y
The npm package eslint-plugin-lit-a11y receives a total of 28,190 weekly downloads. As such, eslint-plugin-lit-a11y popularity was classified as popular.
We found that eslint-plugin-lit-a11y demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.