Shopify / tslint-config-shopify

Shopify’s TypeScript rules and configs.
https://www.npmjs.com/package/tslint-config-shopify
37 stars 3 forks source link

Import order should always let "bare" imports be first #75

Open lemonmade opened 7 years ago

lemonmade commented 7 years ago

This is often necessary for things like poly fills that must run before the other imports:

// should be fine, but complains
import './foo';
import bar from 'bar';