Skip to content

Commit de1d672

Browse files
committed
Disable the no-type-alias rule
1 parent f97c32b commit de1d672

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,11 @@ module.exports = {
140140
}
141141
],
142142
'@typescript-eslint/no-triple-slash-reference': 'error',
143-
'@typescript-eslint/no-type-alias': 'error',
143+
144+
// Disabled as I would like to *enforce* type aliases instead:
145+
// https://github.com/typescript-eslint/typescript-eslint/issues/142
146+
// '@typescript-eslint/no-type-alias': 'error',
147+
144148
'no-unused-vars': 'off',
145149
'@typescript-eslint/no-unused-vars': [
146150
'error',

0 commit comments

Comments
 (0)