Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-uln

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-uln

Recommended UlanaXY config for eslint

  • 5.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

eslint-config-uln

Installation

  1. Installation

    TypeScript only

    yarn add -D babel-eslint@~10.1.0 eslint@^7.5.0 eslint-config-uln
    

    JavaScript

    yarn add -D babel-eslint@~10.1.0 eslint@^7.5.0 eslint-config-uln
    
  2. create/update .eslintrc.js

    • javascript:
    module.exports = {
      "extends": [
        "uln"
      ],
      "ignorePatterns": [
      ]
    };
    
    
    • typescript:
    module.exports = {
      "extends": [
        "uln/typescript"
      ],
      "parserOptions": {
        project: ['./tsconfig.json'],
        tsconfigRootDir: __dirname,
      },
      "ignorePatterns": [
      ]
    };
    
  3. Add script to package.json

    "scripts": {
      "lint:js": "eslint ./src --ext .js,.jsx,.ts,.tsx --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

Keywords

FAQs

Package last updated on 21 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc