@movahhedi/eslint-config
v1.2.3
Published
Shahab's ESLint config
Readme
@movahhedi/eslint-config
Install
If you prefer to set up manually:
pnpm i -D eslint @movahhedi/eslint-configAnd 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
},
},
];