Browse Source

make css be the last imported item

mightyplow 5 years ago
parent
commit
3adcee51ac
1 changed files with 7 additions and 1 deletions
  1. 7 1
      tslint.json

+ 7 - 1
tslint.json

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