errors.js 312 B

1234567891011121314
  1. /**
  2. * unopinionated config. just the things that are necessarily runtime errors
  3. * waiting to happen.
  4. * @type {Object}
  5. */
  6. module.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. };