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 🙏

© 2026 – Pkg Stats / Ryan Hefner

eslint-config-husds3

v0.1.2

Published

ESLint rules and configurations for projects of the third semester Software Development at Hogeschool Utrecht.

Readme

eslint-config-husds3

This package provides a set of ESLint rules and configurations for projects of the third semester of the Bachelor programme Software Development at the University of Applied Sciences Utrecht (Hogeschool Utrecht). It aims to enforce best practices and maintain code quality in your Lit applications.

Features

  • Predefined ESLint rules tailored for Lit applications.
  • Configurations designed to enforce best practices in web component development.
  • Easy integration into your project.

Installation

To install the eslint-config-husds3 package, run the following command:

npm install eslint-config-husds3 --save-dev

Peer Dependencies

Ensure you have the following peer dependencies installed in your project:

  • eslint (version ^7.0.0 || ^8.0.0)
  • lit (if your project uses Lit)

You can install them using:

npm install eslint lit --save-dev

Usage

To use the eslint-config-husds3 configuration in your ESLint setup, you need to import it as a flat configuration in your ESLint configuration file (e.g., eslint.config.js).

Example Configuration

Here’s an example of how to use the configuration in an eslint.config.js file:

import husds3Config from 'eslint-config-husds3/config';

export default [
  ...husds3Config,
  {
    rules: {
      // additional rules
    },
  },
];

Notes

  • Ensure your project uses ESLint version 8.21.0 or later to support flat configurations.
  • You can extend or override the rules by adding your own configurations to the array.

Customization

You can customize the rules by adding your own rules in the ESLint configuration file. For example:

module.exports = {
  extends: 'eslint-config-husds3',
  rules: {
    'no-console': 'warn',
    'lit/no-invalid-html': 'error'
  }
};

Example Rules

Here are some of the rules included in this package:

  • lit/no-invalid-html: Ensures that HTML templates in Lit are valid.
  • no-console: Warns against using console.log in production code.
  • no-dom-manipulation-outside-render: Prevents direct DOM manipulation outside the render method in Lit components.

Note: This configuration is designed for projects that use Lit. Make sure you have lit installed as a dependency in your project.

License

This project is licensed under the ISC License.