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

custom-element-eslint-rule-generator

v1.0.1

Published

A tool for generating eslint rules for your custom elements.

Downloads

15

Readme

Custom Element ESLint Rule Generator

This package takes information in your Custom Elements Manifest and generates rules that can be used in the Custom Element ESLint Plugin. These rules validate the custom elements in your HTML.

demo of eslint validation for custom elements

Usage

This package includes two ways to generate the custom data config file:

  1. calling a function in your build pipeline
  2. as a plugin for the Custom Element Manifest Analyzer

Install

npm install -D custom-element-eslint-rule-generator

Build Pipeline

import { generateEsLintLintRules } from "custom-element-eslint-rule-generator";
import manifest from "./path/to/custom-elements.json" assert {type: 'json'};

const options = {...};

generateEsLintLintRules(manifest, options);

CEM Analyzer

Set-up

Ensure the following steps have been taken in your component library prior to using this plugin:

Import

// custom-elements-manifest.config.js

import { customEsLintRuleGeneratorPlugin } from "custom-element-eslint-rule-generator";

const options = {...};

export default {
  plugins: [
    customEsLintRuleGeneratorPlugin(options)
  ],
};

Implementation

To use these rules, you will need to install the following packages:

  • eslint - to handle the linting and error reporting
  • @html-eslint/eslint-plugin and @html-eslint/parser - to parse the DOM and leverage ESLint for validation
  • eslint-plugin-custom-element - provides the required validation for the generated rules
npm install -D eslint-plugin-custom-element eslint @html-eslint/eslint-plugin @html-eslint/parser

The following is a basic setup to use the custom rules

// eslint.config.js

import customElementRules from "path/to/custom-rules.js";

export default [
  /* ... other ESLint rules */
  customElementRules.recommendedConfig,
];

Configuration

type ErrorLevel = "off" | "warn" | "error" | 0 | 1 | 2;

/** Configuration options */
type Options = {
  /** Path to output directory */
  outdir?: string;
  /** The of the loader file */
  fileName?: string;
  /** Class names of any components you would like to exclude from the custom data */
  exclude?: string[];
  /** Name of the property in the Custom Elements Manifest that contains the list of required attributes */
  requiredAttrsProp?: string;
  /** The property form your CEM component object to display your types */
  typesSrc?: string;
  /** Adds a prefix to tag names */
  prefix?: string;
  /** Adds a suffix to tag names */
  suffix?: string;
  /** Sets default rule error levels */
  defaultRuleErrorLevels: {
    // custom-element eslint rules

    /** validates attribute where predefined values have been defined - default 'error' */
    constrainedAttrs: ErrorLevel;
    /** reports issue when boolean attributes have been assigned a value - default 'error' */
    noBooleanAttrValues: ErrorLevel;
    /** identifies attributes that have been deprecated - default 'warn' */
    noDeprecatedAttrs: ErrorLevel;
    /** identifies elements that have been deprecated - default 'warn' */
    noDeprecatedTags: ErrorLevel;
    /** identifies elements that require specific attributes - default 'error' */
    requiredAttrs: ErrorLevel;

    // HTML eslint rules - https://html-eslint.org/docs/rules (these have all been disabled by default)
    noDuplicateAttrs: ErrorLevel;
    noDuplicateId: ErrorLevel;
    noInlineStyles: ErrorLevel;
    noObsoleteTags: ErrorLevel;
    noRestrictedAttrValues: ErrorLevel;
    noRestrictedAttrs: ErrorLevel;
    noScriptStyleType: ErrorLevel;
    noTargetBlank: ErrorLevel;
    requireAttrs: ErrorLevel;
    requireButtonType: ErrorLevel;
    requireClosingTags: ErrorLevel;
    requireDoctype: ErrorLevel;
    requireLiContainer: ErrorLevel;
    requireMetaCharset: ErrorLevel;
    noMultipleH1: ErrorLevel;
    requireLang: ErrorLevel;
    requireMetaDescription: ErrorLevel;
    requireOpenGraphProtocol: ErrorLevel;
    requireTitle: ErrorLevel;
    noAbstractRoles: ErrorLevel;
    noAccesskeyAttrs: ErrorLevel;
    noAriaHiddenBody: ErrorLevel;
    noNonScalableViewport: ErrorLevel;
    noPositiveTabindex: ErrorLevel;
    noSkipHeadingLevels: ErrorLevel;
    requireFrameTitle: ErrorLevel;
    requireImgAlt: ErrorLevel;
    requireMetaViewport: ErrorLevel;
    elementNewline: ErrorLevel;
    idNamingConvention: ErrorLevel;
    indent: ErrorLevel;
    lowercase: ErrorLevel;
    noExtraSpacingAttrs: ErrorLevel;
    noMultipleEmptyLines: ErrorLevel;
    noTrailingSpaces: ErrorLevel;
    quotes: ErrorLevel;
    sortAttrs: ErrorLevel;
  };
};

Editor Support

Adding support for linting HTML (and other file formats with markup), will be specific to your editor.

VS Code

For VS Code, be sure to install the ESLint Extension. Update your .vscode/settings.json file with the following configuration:

{
  "eslint.enable": true,
  "eslint.validate": [
    "javascript",
    "html" // Add "html" to enable linting `.html` files.
  ]
}