ESLINT Configuration for front end javascript and typescript project. Basically made to work with VueJS.
Go to file
EndMove 20db8a9d56
All checks were successful
continuous-integration/drone/push Build is passing
Update readme
2023-06-27 18:56:07 +02:00
.drone.yml rename project to match conventions 2023-06-27 18:44:40 +02:00
.editorconfig feat(utils-lib): creation of the io-projects eslint package 2023-04-12 20:42:47 +02:00
.eslintrc.json up 2023-06-27 18:30:36 +02:00
.gitignore add missing dependency 2023-06-24 13:06:14 +02:00
.npmrc update for vue3 compilance 2023-06-03 13:13:29 +02:00
LICENSE feat(utils-lib): creation of the io-projects eslint package 2023-04-12 20:42:47 +02:00
package-lock.json Update readme 2023-06-27 18:56:07 +02:00
package.json Update readme 2023-06-27 18:56:07 +02:00
README.md Update readme 2023-06-27 18:56:07 +02:00
VERSION rename project to match conventions 2023-06-27 18:44:40 +02:00

ioprojects-ui-eslint

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