Skip to content
This repository was archived by the owner on Jan 14, 2021. It is now read-only.
/ eslint-config Public archive

ESLint config for NestJS with TypeScript used in Ramble.inc

License

Notifications You must be signed in to change notification settings

ramble-inc/eslint-config

Folders and files

NameName
Last commit message
Last commit date
Jun 20, 2020
Jun 6, 2020
Dec 4, 2020
Jun 6, 2020
Jun 6, 2020
Jun 6, 2020
Jun 6, 2020
Jun 6, 2020
Jun 6, 2020
Jun 6, 2020
Jun 20, 2020
Jun 20, 2020
Dec 18, 2020
Dec 18, 2020

Repository files navigation

@ramble-inc/eslint-config

NPM Version NPM Downloads GitHub Actions Status Package License

Getting Started

Installation

Usnig yarn

yarn add -D @ramble-inc/eslint-config

or using npm

npm i -D @ramble-inc/eslint-config

Configuration

  1. Create .eslintrc.js in project root directory
module.exports = {
  parserOptions: {
    project: 'tsconfig.json',
  },
  extends: ['@ramble-inc/eslint-config'],
  root: true,
};
  1. Create .prettierrc in project root directory with Prettier config of your preference. If you want use @ramble-inc/prettier-config
"@ramble-inc/prettier-config"