Skip to content

Instantly share code, notes, and snippets.

@knu2xs
Last active November 22, 2017 00:05
Show Gist options
  • Save knu2xs/19d489c04ae6807cb71c116c3b8f2a12 to your computer and use it in GitHub Desktop.
Save knu2xs/19d489c04ae6807cb71c116c3b8f2a12 to your computer and use it in GitHub Desktop.
Ember-CLI + WebStorm

Configuring WebStorm for Ember-CLI Projects

If you are using WebStorm with ember-cli, you will need to modify your .gitignore file, enable ECMAScript6 settings, and mark certain directories.

First, add the following line to .gitignore:

.idea

Next, from the WebStorm menu:

File > Settings -> Languages & Frameworks -> JavaScript -> ECMAScript6

Finally, mark specific directories by right clicking on each of the following directories and marking as indicated.

Mark as excluded:

/tmp
/dist

Mark as resource route:

/
/bower_components
/bower_components/ember-qunit/lib
/public

Mark as test sources root:

/tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment