6.0.0 • Published 8 months ago

eslint-config-uln v6.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

eslint-config-uln

Installation

  1. Installation
    yarn add -D babel-eslint@~10.1.0 eslint@^7.5.0 eslint-config-uln
  2. create/update eslint.config.mjs

    import ulnConfig from 'eslint-config-uln';
    
    
    /** @type {import('eslint').Linter.Config[]} */
    export default [
      ...ulnConfig,
    ]
  3. Add script to package.json

    "scripts": {
      "lint:js": "eslint ./src  --max-warnings=0",
    }  

Publishing

  1. Be repo Maintainer.
  2. Merging branch develop to master via Merge Request.
  3. Switch locally to main branch
  4. run npm publish
  5. after publication is completed make sure that everything is pushed to git
  6. merge main to develop
  7. done