0.1.0 • Published 2 years ago

@kinematic-lab/eslint-config-typescript v0.1.0

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

@kinematic-lab/eslint-config-typescript

@kinematic-lab/eslint-config-typescript contains the default TypeScript ESLint configuration for kinematic-labs projects.

Table of contents

Relevant links

See changelogs: Here. See npm: here.

Installation

To use @kinematic-lab/eslint-config-typescript in your project, you must first install it as a dependency. You can do this by running the following command in your terminal:

Using PNPM

$ pnpm i @kinematic-lab/eslint-config-typescript -D

Using NPM

$ npm i @kinematic-lab/eslint-config-typescript -D

Using Yarn

$ yarn add @kinematic-lab/eslint-config-typescript --dev

Usage

Once you have installed the package, you can use it by extending it in your ESLint configuration file. See the examples below:

.eslintrc.js

module.exports = {
	extends: ['@kinematic-lab/eslint-config-typescript'],
	// other configuration
};

.eslintrc.json

{
	"extends": ["@kinematic-lab/eslint-config-typescript"],
	// other configuration
}