0.0.7 • Published 5 months ago

@lshay/eslint-config-flat v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@lshay/eslint-config-flat

A ESLint config generator made for TypeScript projects

Getting Started

Install using the package manager of your choice.

npm i -D eslint @lshay/eslint-config-flat
pnpm i -D eslint @lshay/eslint-config-flat
yarn add -D eslint @lshay/eslint-config-flat

Create a file named eslint.config.js with the following contents.

import { createConfig } from "@lshay/eslint-config-flat"

export default createConfig({
	parserOptions: {
		project: "./tsconfig.json",
	},
	prettier: true,
})