eslint-config/README.md

818 B

eslint-config

This repository is the NPM package for ESLINT configuration of IO-Projects TypeScript front-end projects.

Installation

Add the registery to your .npmrc file:

@ioprojects:registry=https://git.endmove.eu/api/packages/IO-ProjectsOfficial/npm/

Install the package:

# with yarn
yarn add -D @io-projects/eslint-config

# with npm
npm install --save-dev @io-projects/eslint-config

Usage

Add the following to your .eslintrc.js file:

module.exports = {
  extends: [
    '@io-projects/eslint-config'
  ]
}

Or

Add the following to your .eslintrc.json file:

{
  "extends": [
    "@io-projects/eslint-config"
  ]
}

Or

Add the following to your .eslintrc.cjs file:

module.exports = require('@ioprojects/ui-eslint-base');