Skip to content

Quick Start

bash bun add -D eslint-plugin-cease-nonsense
  1. Add to your ESLint config

    import ceaseNonsense from "eslint-plugin-cease-nonsense";
    export default [
    ceaseNonsense.configs.recommended,
    // ... your other configs
    ];
  2. Run ESLint

    Terminal window
    bun run eslint .

The recommended config turns on every rule with sensible defaults. Most are set to warn; a handful of critical rules default to error.

If you want to cherry-pick categories, disable specific rules, or adjust severity levels, see the Configuration Reference.