Hey in the section Module Imports it's mentioned to order your imports by:
- Standard library imports (if a standard library exists)
- Third party library imports
- Local imports (imports specific to this application or library)
in the example it's written:
require 'lib/setup'
Backbone = require 'backbone'
But isn't "require 'lib/setup'" a local import and "Backbone = require 'backbone'" a third-party library? If this is correct one should switch the order in the example.