npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@lwc/eslint-plugin-lwc

v1.8.1

Published

Official ESLint rules for LWC

Downloads

401,257

Readme

@lwc/eslint-plugin-lwc

Official ESLint rules for Lightning Web Components (LWC).

Installation

$ npm install eslint @babel/core @babel/eslint-parser @lwc/eslint-plugin-lwc --save-dev

Usage

Add @lwc/eslint-plugin-lwc to the plugins section of your configuration. Then configure the desired rules in the rules sections. Some of the syntax used in Lightning Web Components is not yet stage 4 (eg. class fields or decorators), and the out-of-the-box parser from ESLint doesn't support this syntax yet. In order to parse the LWC files properly, set the parser field to @babel/eslint-parser.

Example of .eslintrc:

{
    "parser": "@babel/eslint-parser",
    "parserOptions": {
        "requireConfigFile": false,
        "babelOptions": {
            "parserOpts": {
                "plugins": ["classProperties", ["decorators", { "decoratorsBeforeExport": false }]]
            }
        }
    },

    "plugins": ["@lwc/eslint-plugin-lwc"],

    "rules": {
        "@lwc/lwc/no-deprecated": "error",
        "@lwc/lwc/valid-api": "error",
        "@lwc/lwc/no-document-query": "error"
    }
}

For more details about configuration please refer to the dedicated section in the ESLint documentation: https://eslint.org/docs/user-guide/configuring

Configurations

To choose from three configuration settings, install the eslint-config-lwc sharable configuration package.

Rules

LWC

| Rule ID | Description | Fixable | | -------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | ------- | | lwc/consistent-component-name | ensure component class name matches file name | 🔧 | | lwc/no-api-reassignments | prevent public property reassignments | | | lwc/no-deprecated | disallow usage of deprecated LWC APIs | | | lwc/no-document-query | disallow DOM query at the document level | | | lwc/no-attributes-during-construction | disallow setting attributes during construction | | | lwc/no-disallowed-lwc-imports | disallow importing unsupported APIs from the lwc package | | | lwc/no-leading-uppercase-api-name | ensure public property doesn't start with an upper-case character | | | lwc/no-unexpected-wire-adapter-usages | enforce wire adapters to be used with wire decorator | | | lwc/no-unknown-wire-adapters | disallow usage of unknown wire adapters | | | lwc/valid-api | validate api decorator usage | | | lwc/valid-track | validate track decorator usage | | | lwc/valid-wire | validate wire decorator usage | | | lwc/no-restricted-browser-globals-during-ssr | disallow access to global browser APIs during SSR | | | lwc/no-unsupported-ssr-properties | disallow access of unsupported properties in SSR | | | lwc/no-node-env-in-ssr | disallow usage of process.env.NODE_ENV in SSR | | | lwc/valid-graphql-wire-adapter-callback-parameters | ensure graphql wire adapters are using 'errors' instead of 'error' | |

Best practices

| Rule ID | Description | Fixable | | ------------------------------------------------------------------------ | --------------------------------------------------------- | ------- | | lwc/no-async-operation | restrict usage of async operations | | | lwc/no-dupe-class-members | disallow duplicate class members | | | lwc/no-inner-html | disallow usage of innerHTML | | | lwc/no-template-children | prevent accessing the immediate children of this.template | | | lwc/no-leaky-event-listeners | prevent event listeners from leaking memory | | | lwc/prefer-custom-event | suggest usage of CustomEvent over Event constructor | |

Compat performance

Older browsers like IE11 run LWC in compatibility mode. For more information about browser performance, please refer to Supported Browsers in the Lightning Web Components Developer Guide.

| Rule ID | Description | Fixable | | ---------------------------------------------------------- | ------------------------------------------- | ------- | | lwc/no-async-await | disallow usage of the async-await syntax | | | lwc/no-for-of | disallow usage of the for-of syntax | | | lwc/no-rest-parameter | disallow usage of the rest parameter syntax | |

Deprecated

| Rule ID | Replaced by | | ------------------------------------------------------------------ | ---------------------------------------------------------------------------- | | lwc/no-dupe-class-members | no-dupe-class-members |