Skip to content

ESLint configuration file for Web Scrobbler projects

License

Notifications You must be signed in to change notification settings

web-scrobbler/eslint-config-web-scrobbler

Repository files navigation

@web-scrobbler/eslint-config NPM Test

ESLint configuration file for Web Scrobbler projects.

Usage

You can install @web-scrobbler/eslint-config by a following way:

> npm install --save-dev @web-scrobbler/eslint-config

JavaScript

Add web-scrobbler to the extends array in your .eslintrc.* file:

{
	"extends": ["some-other-config-you-use", "web-scrobbler"]
}

TypeScript

Install peer dependencies first:

> npm install --save-dev @typescript-eslint/eslint-plugin @typescript-eslint/parser

Then, add web-scrobbler/typescript to the extends array in your .eslintrc.* file:

{
	"extends": ["some-other-config-you-use", "web-scrobbler/typescript"]
}

You don't need to include web-scrobbler config - web-scrobbler/typescript handles both JS and TS files.

Vue

Install peer dependencies first:

> npm install --save-dev eslint-plugin-vue

Then, add web-scrobbler/vue cto the extends array in your .eslintrc.* file:

{
	"extends": [
		"some-other-config-you-use",
		"web-scrobbler",
		"web-scrobbler/vue"
	]
}

web-scrobbler/vue config is applied to Vue SFCs only, so you should add web-scrobbler (or web-scrobbler/typescript) and web-scrobbler/vue configs to the extends array.

License

Licensed under the MIT License.