Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.81 KB

how-to-configure-text-editors.md

File metadata and controls

54 lines (32 loc) · 1.81 KB

How to Configure Text Editors and IDEs for React.js img

Tips and tricks on how to configure your favorite text editor or IDE to work with React.js/ES6+/JSX.

WebStorm

Create a new project based on React Starter Kit template

react-project-template-in-webstorm

Make sure that JSX support is enabled in your project. This is set by default, if you create a new project based on React.js template.

jsx-support-in-webstorm

Configure JavaScript libraries for auto-complete

javascript-libraries-in-webstorm

Enable ESLint support

eslint-support-in-webstorm

Enable CSSComb by installing CSSReorder plug-in

csscomb-in-webstorm

Atom

Install atom packages

apm install linter linter-eslint react

Install local npm packages

npm install --save-dev eslint babel-eslint eslint-plugin-react

You may need to restart atom for changes to take effect

SublimeText

Coming soon.