Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

.eslintrc.cjs 469B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. module.exports = {
  3. extends: [
  4. 'ash-nazg/sauron-node-overrides'
  5. ],
  6. settings: {
  7. polyfills: [
  8. 'console',
  9. 'Error',
  10. 'Set'
  11. ]
  12. },
  13. overrides: [
  14. {
  15. files: 'test/**'
  16. }
  17. ],
  18. // Auto-set dynamically by config but needs to be explicit for Atom
  19. parserOptions: {
  20. ecmaVersion: 2021
  21. },
  22. rules: {
  23. // https://github.com/benmosher/eslint-plugin-import/issues/1868
  24. 'import/no-unresolved': 'off'
  25. }
  26. };