1.0.0 • Published 10 months ago

@movahhedi/eslint-config v1.0.0

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

@movahhedi/eslint-config

Install

If you prefer to set up manually:

pnpm i -D eslint @movahhedi/eslint-config

And create eslint.config.mjs in your project root:

// eslint.config.mjs
import movahhediConfig from "@movahhedi/eslint-config";

export default movahhediConfig();

Or if you want to add your own rules:

// eslint.config.mjs
import movahhediConfig from "@movahhedi/eslint-config";

export default [
	...movahhediConfig(),
	{
		rules: {
			// your rules
		},
	},
];