aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json7
1 files changed, 5 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 7de658b..43e4cef 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -2,7 +2,7 @@
"root": true,
"parser": "@typescript-eslint/parser",
"ignorePatterns": ["dist", "browser"],
- "plugins": ["header"],
+ "plugins": ["header", "simple-import-sort"],
"rules": {
// Since it's only been a month and Vencord has already been stolen
// by random skids who rebranded it to "AlphaCord" and erased all license
@@ -83,6 +83,9 @@
"no-useless-backreference": "error",
"use-isnan": "error",
"prefer-const": "error",
- "prefer-spread": "error"
+ "prefer-spread": "error",
+
+ "simple-import-sort/imports": "error",
+ "simple-import-sort/exports": "error"
}
}