3.1.1 • Published 3 months ago

@web-scrobbler/eslint-config v3.1.1

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

@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.

3.1.1

3 months ago

3.1.0

3 months ago

3.0.0

8 months ago