Browse Source

make css be the last imported item

mightyplow 5 năm trước cách đây
mục cha
commit
3adcee51ac
1 tập tin đã thay đổi với 7 bổ sung1 xóa
  1. 7 1
      tslint.json

+ 7 - 1
tslint.json

@@ -8,7 +8,13 @@
         "interface-over-type-literal": false,
         "trailing-comma": false,
         "quotemark": false,
-        "space-before-function-paren": false
+        "space-before-function-paren": false,
+        "ordered-imports": [
+            true,
+            {
+                "import-sources-order": "lowercase-last"
+            }
+        ]
     },
     "rulesDirectory": []
 }