![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
eslint-plugin-wc
Advanced tools
eslint-plugin-wc
ESLint plugin for Web Components.
Assuming you already have ESLint installed, run:
# npm
npm install eslint-plugin-wc --save-dev
# yarn
yarn add eslint-plugin-wc --dev
Then extend the recommended eslint config:
{
"extends": [
// ...
"plugin:wc/recommended"
]
}
Or if you're using ESLint flat configs, add this to your eslint.config.js
:
import {configs} from 'eslint-plugin-wc';
export default [
configs.recommended,
// or if you want to specify `files`, or other options
{
...configs.recommended,
files: ['test/**/*.js']
}
];
You should also specify settings that will be shared across all the plugin rules. (More about eslint shared settings)
{
"settings": {
"wc": {
"elementBaseClasses": ["LitElement"] // Recognize `LitElement` as a Custom Element base class
}
}
}
If you want more fine-grained configuration, you can instead add a snippet like this to your ESLint configuration file:
{
"plugins": [
// ...
"wc"
],
"rules": {
// ...
"wc/no-invalid-element-name": "error",
"wc/no-typos": "warn"
}
}
This plugin exports a recommended
configuration that enforces WebComponent good practices.
To enable this configuration use the extends
property in your .eslintrc
config file:
{
"extends": ["eslint:recommended", "plugin:wc/recommended"]
}
This plugin exports a best-practice
configuration that enforces WebComponent best practices.
To enable this configuration use the extends
property in your .eslintrc
config file:
{
"extends": ["eslint:recommended", "plugin:wc/best-practice"]
}
Note: These configurations will enable sourceType: 'module'
in parser options.
eslint-plugin-wc
is licensed under the MIT License.
FAQs
ESLint plugin for Web Components
We found that eslint-plugin-wc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.