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.json 285B

123456789101112131415
  1. {
  2. "extends": "airbnb-base",
  3. "plugins": [
  4. "chai-friendly"
  5. ],
  6. "env": {
  7. "mocha": true,
  8. "es6": true
  9. },
  10. "rules": {
  11. "no-unused-expressions": "off",
  12. "chai-friendly/no-unused-expressions": 2,
  13. "comma-dangle": "off"
  14. }
  15. }