@movahhedi/eslint-config
v1.0.0
Published
Shahab's ESLint config
Downloads
6
Readme
@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
},
},
];