@koddsson/eslint-config
v1.1.0
Published
My ESLint Config.
Downloads
121
Readme
eslint-config
This is my eslint configuration. There are many like it but this is mine.
npm install --save-dev eslint @koddsson/eslint-config
Add this to your package.json
"scripts": {
"lint": "eslint \"src/**/*.{js,mjs,ts,mts}\""
}
And create a eslint.config.js
with the config enabled:
import koddssonConfig from "@koddsson/eslint-config";
export default [
...koddssonConfig,
// Rest of your config goes here.
];