4.0.0 • Published 8 months ago

@firefoxic/eslint-config v4.0.0

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

@firefoxic/eslint-config

License: MIT Changelog NPM version Test Status

Shared config for eslint by firefoxic.

To see the rules that this config uses, please read the config itself.

Installation

pnpm add -D eslint @firefoxic/eslint-config

Usage

Set your eslint.config.js to:

import { default as firefoxicEslintConfig, globals } from "@firefoxic/eslint-config"

export default [
	{
		languageOptions: {
			globals: {
				...globals.browser, // If you're working on a frontend project
				...globals.nodeBuiltin, // If you're working on a Node.js project
			},
		},
	},
	...firefoxicEslintConfig,
	{
		rules: {
			// Your overrides or additions to rules
		}
	}
]
4.0.0

8 months ago

3.0.1

10 months ago

3.0.0

10 months ago

2.2.0

10 months ago

2.1.0

10 months ago

2.0.0

1 year ago

1.0.0

1 year ago

0.1.0

1 year ago