aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/typescript/default.json12
2 files changed, 13 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 2d23211..b4a1796 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -429,7 +429,7 @@
- [ ] "no-require-imports"
- [ ] "no-this-alias"
- [ ] "no-throw-literal"
-- [ ] "no-type-alias"
+- [X] "no-type-alias"
- [ ] "no-unnecessary-boolean-literal-compare"
- [ ] "no-unnecessary-condition"
- [ ] "no-unnecessary-qualifier"
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json
index 0941e82..9c1081b 100644
--- a/src/rules/typescript/default.json
+++ b/src/rules/typescript/default.json
@@ -103,6 +103,18 @@
"allowDefinitionFiles": true
}
],
+ "@typescript-eslint/no-type-alias": [
+ "error",
+ {
+ "allowAliases": "in-unions-and-intersections",
+ "allowCallbacks": "always",
+ "allowConditionalTypes": "always",
+ "allowConstructors": "never",
+ "allowLiterals": "never",
+ "allowMappedTypes": "never",
+ "allowTupleTypes": "in-unions-and-intersections"
+ }
+ ],
"@typescript-eslint/no-untyped-public-signature": [
"error",
{