@davidsneighbour/eslint-config
v2026.0.2
Published
ESlint configuration for use in davidsneighbour projects.
Readme
Add eslint.config.js to your project:
import eslintConfig from "@davidsneighbour/eslint-config";
export default eslintConfig;Or if you want to override some rules, you can do it like this:
import eslintConfig from "@davidsneighbour/eslint-config";
export default [
...eslintConfig,
{
rules: {
// rules that override those in the preset
}
}
];Write better code.
