1.0.0-beta.2 • Published 9 months ago

@chance/eslint v1.0.0-beta.2

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

@chance/eslint

Rules for my own shit.

Installation

# pnpm
pnpm add @chance/eslint eslint@9 --save-dev
# npm
npm i @chance/eslint eslint@9 --save-dev

Usage

Extend chance and any optional rulesets in your eslint.config.js:

// eslint.config.js
// (eslint.config.mjs if project is not using ESM)
import * as js from "@chance/eslint";
import * as react from "@chance/eslint/react";
import * as typescript from "@chance/eslint/typescript";
import * as vitest from "@chance/eslint/vitest";

export default [
	js.config,
	// Optional rulesets
	typescript.config,
	react.config,
	vitest.config,
];