1.1.0 • Published 16 days ago

@koddsson/eslint-config v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
16 days ago

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.
];