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

@modusoperandi/eslint-config

v3.0.3

Published

Module containing the lint configuring for MO

Readme

Modus Operandi eslint-config

Description

This package contains the core coding standards for all MO apps.

Requirements

Before you can start using the eslint-config your application must have the following dev-dependencies associated with your apps version of Angular:

  • eslint
  • angular-eslint (for Angular projects only)

Installation & Setup

  1. Run npm i -D @modusoperandi/eslint-config to install the package as a dev dependency. If using Angular, follow the Angular ESLint instructions to enable Linting with ESLint, and make sure angular-eslint is installed.
    1. Remove all eslint dependencies aside from eslint and angular-lint from your dev-dependencies.
  2. Copy eslint.config.cjs and .prettierrc.yml from this repo to the root of your project, and remove excess comments.
  3. Change mo to the prefix of your Angular app/lib, or remove that line if this isn't an Angular project.
  4. Run ng lint (Angular) or eslint (Basic) in a script to ensure functionality. Add --max-warnings=0 to make these rules strict, or --quite to ignore warnings.

You may use a different Prittier config for your project, but the one in this project is recommended. It is recommended to limit edits to the prettierrc to compatibility reasons, and to respect the stylistic defaults.

Optional

  1. Add the .gitattributes from this project to your project to prevent End Of Line (EOL) issues in your repo.
  2. If you are using VSCode, Make sure you have the following extensions that help with these rules.

Migrating from v1 to v2

  1. Do steps 2 + 3 from the setup.
  2. Change 'mo' in the config file to the prefix you are using for your Angular app/lib if necessary. The prefix overrides are part of the shared config.
  3. If you have any rule overrides aside from the 2 Angular prefix rules, add them as shown here in accordence with the new ESLint flat config.
  4. Delete your old eslint config file.

Migrating from v2 to v3

  1. Config is now required and requires specifying a copyright header, with an optional project license.
  2. For the license value, if provided, it is recommended to use the short name of the license, or See LICENSE file at root of project.
  3. If not provided, @license will still be included in the header as some compilers know to preserve the header comment when it is present. (ex, the Angular compiler)

Usage Notes

  1. console.log(...) should be avoided. These are usually forgotten debug statements, and when they’re not, their overuse can spam the logs hiding actual errors. It is recommended to use ngx-logger instead so that logging behavior can be controlled at the app layer. console.warn(...) and console.error(...) are ok to use though if necessary.
  2. Mocking libraries are designed to be typescript friendly. If a mock library ever returns "any" as a type, that usually means you forgot to specify a type somewhere.
  3. () => {} is commonly used for a "noop" function. However, {} looks like an empty object, and semantically empty function blocks are usually an unintended bug. use () => undefined instead to make the noop clear, or () => ({}) if you intended to return an empty object.
  4. import/no-extraneous-dependencies means you're importing something that isn't declared in your package.json, and my not get installed if your dependencies of dependencies change. These packages need to be added to your peerDependencies or dependencies to protect you and your consumers.
  5. The set of import rules that restrict absolute paths, cycles, and useless path segments are there to protect your code base from a variety of edge cases that can cause compile/runtime issues for you or your consumers.
  6. "http://" can always be avoided. For URLs, you should always default to "https". For URIs like xml schemes, you should use an imported constant or parameter instead to avoid typos.
  7. The header config requires file headers to start with @license and @copyright, but you can include addition things after that like @file.
  8. For the header copyright config, you can use const fs = require('node:fs') (or const fs = require('fs') which is friendlier to Visual Studio Code) to load the copyright text from a file with fs.readFileSync('./COPYRIGHT.md', 'utf-8').
  9. For strict mode, it is recommended to use more performant/safe regex libraries for non-trivial regex to avoid ReDOS (Regex Denial Of Service) issues.