Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.56 KB

README.md

File metadata and controls

43 lines (31 loc) · 1.56 KB

@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
			...
		}
	},
];