ESLINT Configuration for front end javascript and typescript project. Basically made to work with VueJS.
Go to file
Jérémi N ‘EndMove’ d6413f3f88 feat(ci) Setting up drone ci + fix package [test] (#1)
Reviewed-on: #1
Co-authored-by: EndMove <superjeremi1302@gmail.com>
Co-committed-by: EndMove <superjeremi1302@gmail.com>
2023-06-28 13:26:08 +02:00
.drone.yml feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00
.editorconfig feat(utils-lib): creation of the io-projects eslint package 2023-04-12 20:42:47 +02:00
.eslintrc.json feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00
.gitignore feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00
.npmrc feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00
LICENSE feat(utils-lib): creation of the io-projects eslint package 2023-04-12 20:42:47 +02:00
README.md feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00
package-lock.json feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00
package.json feat(ci) Setting up drone ci + fix package [test] (#1) 2023-06-28 13:26:08 +02:00

README.md

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');