24.0.0 • Published 1 year ago

@cloudfour/eslint-config v24.0.0

Weekly downloads
14
License
MIT
Repository
github
Last release
1 year ago

@cloudfour/eslint-config

NPM version Build Status Renovate

Cloud Four's ESLint configuration.

This config extends the following plugins:

It also adds the following custom rules:

Usage

This package exports a flat ESLint configuration.

npm install --save-dev eslint @cloudfour/eslint-config

Example eslint.config.js:

import cloudFourConfig from '@cloudfour/eslint-config';

export default [
	...cloudFourConfig,
	{
		rules: {
			// your overrides here
			...
		}
	},
];