0.1.0 • Published 4 years ago

eslint-config-promer94 v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Install

$ npm install --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-config-prettier eslint-config-xo eslint-config-xo-react eslint-config-xo-space eslint-config-xo-typescript eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks

Standalone Usage

Add some ESLint config to your package.json (or .eslintrc):

{
	"name": "my-awesome-project",
	"eslintConfig": {
		"extends": [
			"promer94"
		]
	}
}

Note: If your tsconfig.json is not in the same directory as package.json, you will have to set the path yourself:

{
	"name": "my-awesome-project",
	"eslintConfig": {
		"extends": [
			"promer94"
		],
		"parserOptions": {
			"project": "some-path/tsconfig.json"
		}
	}
}