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

123456789101112131415161718
  1. {
  2. "extends": "@ljharb",
  3. "root": true,
  4. "rules": {
  5. "func-style": 1,
  6. "operator-linebreak": [2, "before"],
  7. },
  8. "overrides": [
  9. {
  10. "files": "test/**",
  11. "rules": {
  12. "global-require": 0,
  13. "max-lines-per-function": 0,
  14. "no-negated-condition": 0,
  15. },
  16. },
  17. ],
  18. }