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.js 514B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. "env": {
  3. "commonjs": true,
  4. "es6": true,
  5. "node": true
  6. },
  7. "extends": "eslint:recommended",
  8. "parserOptions": {
  9. "ecmaVersion": 2018
  10. },
  11. "rules": {
  12. "indent": [
  13. "error",
  14. 4
  15. ],
  16. "linebreak-style": [
  17. "error",
  18. "unix"
  19. ],
  20. "quotes": [
  21. "error",
  22. "double"
  23. ],
  24. "semi": [
  25. "error",
  26. "always"
  27. ]
  28. }
  29. };