web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
342 B

  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. }