@heko-lab/eslint-config
v1.0.5
Published
A minimalistic shareable ESLint configuration
Readme
@heko-lab/eslint-config
A minimalistic shareable ESLint configuration for modern JavaScript projects. It is meant to be used internally at Heko Lab and may break in the future without notice.
Installation
npx install-peerdeps --dev @heko-lab/eslint-configUsage
Create an eslint.config.js file in your project root:
import config from "@heko-lab/eslint-config";
export default config;Or extend it with your own rules:
import baseConfig from "@heko-lab/eslint-config";
export default [
...baseConfig,
{
rules: {
// Your custom rules here
"no-console": "off",
},
},
];Publishing new versions
npm version patch # or minor, major
git push --follow-tagsLicense
MIT
