File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,10 @@ export default [
2626 'no-empty' : 'off' , // allow empty blocks
2727 'no-inner-declarations' : 'off' , // allow function declarations anywhere
2828 'no-useless-escape' : 'off' , // allow all escape chars cause ESLint sucks at detecting truly useless ones
29- 'no-unused-vars' : [ 'error' , { 'caughtErrors' : 'none' } ] // allow unused named args in catch blocks
29+ 'no-unused-vars' : [ 'error' , { 'caughtErrors' : 'none' } ] , // allow unused named args in catch blocks
30+ 'import/no-named-as-default-member' : 'off' , // allow accessing named exports via default import
31+ 'import/no-unresolved' : [ 'error' , { ignore : [ '^(?:https?://)' ] } ] // allow dynamic imports from URLs...
32+ // ...maintainer refuses to support (https://github.com/import-js/eslint-plugin-import/issues/3118)
3033 }
3134 } ,
3235 {
You can’t perform that action at this time.
0 commit comments