/**1* The basics.2* @type {Object}3*/4module.exports = {5plugins: ['import'],67rules: {8// analysis/correctness9'import/no-unresolved': 'error',10'import/named': 'error',11'import/namespace': 'error',12'import/default': 'error',13'import/export': 'error',1415// red flags (thus, warnings)16'import/no-named-as-default': 'warn',17'import/no-named-as-default-member': 'warn',18'import/no-duplicates': 'warn',19},2021// need all these for parsing dependencies (even if _your_ code doesn't need22// all of them)23parserOptions: {24sourceType: 'module',25ecmaVersion: 2018,26},27};282930