Eslint plugin
npm install @knfs-tech/eslint-pluginThis npm package provides a set of custom ESLint rules to enforce code style and best practices for JavaScript projects.
Install the package via npm:
``bash`
npm install --save-dev @knfs-jsc/eslint-plugin
Or via yarn:
`bash`
yarn add --dev @knfs-jsc/eslint-plugin
To use this ESLint plugin, add it to your .eslintrc configuration file:
`json``
{
"plugins": ["@knfs-jsc/eslint-plugin"],
"rules": {
"@knfs-jsc/eslint-plugin/no-arrow-functions": "error",
}
}
eslint-plugin is open-sourced software licensed under the MIT license.
---