findzen / eslint-config-xo-space

ESLint shareable config for XO with 2-space indent

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eslint-config-xo-space Build Status

ESLint shareable config for XO with 2-space indent

This is for advanced users. You probably want to use XO directly.

Install

$ npm install --save-dev eslint-config-xo-space

Usage

Add some ESLint config to your package.json:

{
	"name": "my-awesome-project",
	"eslintConfig": {
		"extends": "xo-space"
	}
}

Or to .eslintrc:

{
	"extends": "xo-space"
}

Supports parsing ES2015+, but doesn't enforce it by default.

This package also exposes xo-space/esnext if you want ES2015+ rules:

{
	"extends": "xo-space/esnext"
}

And xo-space/browser if you're in the browser:

{
	"extends": "xo-space/browser"
}

Related

License

MIT © Sindre Sorhus

About

ESLint shareable config for XO with 2-space indent

License:MIT License


Languages

Language:JavaScript 100.0%