8484 node/prefer-promises/fs : off
8585
8686 # #############################################################################
87- # `eslint-plugin-import` rule list based on `v2.22 .x`
87+ # `eslint-plugin-import` rule list based on `v2.23 .x`
8888 # #############################################################################
8989
9090 # Static analysis
@@ -106,6 +106,7 @@ rules:
106106 import/no-cycle : error
107107 import/no-useless-path-segments : error
108108 import/no-relative-parent-imports : off
109+ import/no-relative-packages : off
109110
110111 # Helpful warnings
111112 # https://github.com/benmosher/eslint-plugin-import#helpful-warnings
@@ -123,14 +124,18 @@ rules:
123124 import/no-commonjs : error
124125 import/no-amd : error
125126 import/no-nodejs-modules : error
127+ import/no-import-module-exports : off
126128
127129 # Style guide
128130 # https://github.com/benmosher/eslint-plugin-import#style-guide
129131 import/first : error
130132 import/exports-last : off
131133 import/no-duplicates : error
132134 import/no-namespace : error
133- import/extensions : [error, never] # TODO: switch to ignorePackages
135+ import/extensions :
136+ - error
137+ - ignorePackages
138+ - ts : never # TODO: remove once TS supports extensions
134139 import/order : [error, { newlines-between: always-and-inside-groups }]
135140 import/newline-after-import : error
136141 import/prefer-default-export : off
@@ -144,7 +149,7 @@ rules:
144149 import/dynamic-import-chunkname : off
145150
146151 # #############################################################################
147- # ESLint builtin rules list based on `v7.25 .x`
152+ # ESLint builtin rules list based on `v7.27 .x`
148153 # #############################################################################
149154
150155 # Possible Errors
@@ -447,7 +452,7 @@ overrides:
447452 - plugin:import/typescript
448453 rules :
449454 # #########################################################################
450- # `@typescript-eslint/eslint-plugin` rule list based on `v4.22 .x`
455+ # `@typescript-eslint/eslint-plugin` rule list based on `v4.25 .x`
451456 # #########################################################################
452457
453458 # Supported Rules
0 commit comments