You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Hey in the section Module Imports it's mentioned to order your imports by:
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.
The text was updated successfully, but these errors were encountered: