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 198B

123456789101112131415161718
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "env": {
  5. "browser": true,
  6. "node": true,
  7. },
  8. "globals": {
  9. "globalThis": false,
  10. },
  11. "rules": {
  12. "max-statements-per-line": [2, { "max": 2 }]
  13. }
  14. }