jamestalmage / xo-with-webstorm

Tips for using XO in WebStorm

Home Page:https://github.com/sindresorhus/xo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XO in WebStorm

This document contains some helpful hints for using XO in WebStorm.

Import and Use the XO WebStorm Code Style

This repository includes a WebStorm code style for XO. Just download it anywhere on your desktop, and then import it in the WebStorm preferences.

Add an EditorConfig File

WebStorm includes an EditorConfig plugin. Just download the .editorconfig file from this repository and save it in your projects base directory. EditorConfig is widely supported across a number of editors, so it will have benefits for collaborators that use other editors.

WebStorm ESLint Plugin

WebStorm provides real time highlighting of errors for a variety of linters. Unfortunately, there is not direct support for XO, but there is support for ESLint. Making things work requires you setup ESLint directly, instead of the more convenient XO wrapper. (You can still use XO from the command line)

Install Dependencies

In addition to XO, you will need to install a number of dependencies that XO usually includes by default. This includes eslint-config-xo, and a number of plugins. You can just copy and paste the line below. (eslint-config-xo-react is optional).

npm install --save-dev xo eslint eslint-config-xo eslint-plugin-no-use-extend-native eslint-plugin-ava eslint-plugin-unicorn eslint-plugin-promise eslint-plugin-import eslint-config-xo-react
Add an ESLint Config

Add an ESLint config to package.json. (Again, xo-react is optional here).

{
	"eslintConfig": {
		"parser": "babel-eslint",
		"env": {
			"node": true,
			"es6": true
		},
		"extends": [
				"xo/esnext",
				"xo-react",
				"./node_modules/xo/config/plugins.js"
		]
	}
}
Configure WebStorms ESLint Support

With the above steps complete, configuring WebStorm to provide linter feedback in the editor is straightforward.

Go to Preferences > Languages and Frameworks > Code Quality Tools > Eslint and setup

Help Wanted

If you have additional suggestions, tips or tricks for using XO and WebStorm together, please open an issue or submit a Pull Request.

License

MIT © James Talmage

About

Tips for using XO in WebStorm

https://github.com/sindresorhus/xo

License:MIT License