1/** 2 * unopinionated config. just the things that are necessarily runtime errors 3 * waiting to happen. 4 * @type {Object} 5 */ 6module.exports = { 7 plugins: ['import'], 8 rules: { 'import/no-unresolved': 2, 9 'import/named': 2, 10 'import/namespace': 2, 11 'import/default': 2, 12 'import/export': 2, 13 }, 14}; 15 16