Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

eslint-config-mgenware

mgenware28MIT0.10.0

A set of opinionated rules for typescript-eslint

eslint, eslint typescript

readme

eslint-config-mgenware

Build Status

A set of opinionated rules for typescript-eslint.

Usage

Installation:

npm i -D eslint-config-mgenware eslint "@typescript-eslint/parser" "@typescript-eslint/eslint-plugin" "eslint-plugin-import"

.eslintrc.cjs:

module.exports = {
  root: true,
  parser: '@typescript-eslint/parser',
  extends: ['mgenware'],
  parserOptions: {
    sourceType: 'module',
    project: './tsconfig.json',
  },
};