Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 1.03 KB

development.md

File metadata and controls

28 lines (14 loc) · 1.03 KB

Development

IDE

No matter what IDE you use, take your time to learn and configure it properly. We started with Eclipse and the PyDev plugin and moved to PyCharm after some years. The main reason for the move were the powerful JavaScript development tools in PyCharm as it contains all the features from the popular Webstorm IDE.

Code Style and Code Quality Tools

  1. Use configuration files for linters and hinters like JSHint (.jshintrc) if possible. They are used by your IDE and build tools like grunt scripts.
  2. Share the code style and code quality tool profiles and add them to your SCM.

Debug

Django

Create and share a Django server Run/Debug configuration for your django project.

revolunet logo

AngularJS

Install the [JetBrains Chrome Extension](JetBrains Chrome Extension) and start a JavaScript Debug Session.

Source Maps

tbd