3.0.3 • Published 10 months ago

@mariusz.sh/eslint-config v3.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

@mariusz.sh/eslint-config ci

Installation

npm install --save-dev @mariusz.sh/eslint-config

Then in eslint.config.js:

import config from "@mariusz.sh/eslint-config";

if (process.env.NODE_ENV !== "production") {
  // Make all rules warn only
  await import("eslint-plugin-only-warn");
}

export default [
  ...config,
  // ...
];