@koddsson/eslint-config
v2.0.1
Published
My ESLint Config.
Downloads
169
Readme
eslint-config
This is my eslint configuration. There are many like it but this is mine.
npm install --save-dev eslint @koddsson/eslint-configAdd 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.
];