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

123456789101112131415
  1. {
  2. "extends": "airbnb-base/legacy",
  3. "env": {
  4. "browser": true,
  5. "amd": true,
  6. "es6": false
  7. },
  8. "rules": {
  9. "no-param-reassign": "off",
  10. "prefer-rest-params": "off",
  11. "no-restricted-syntax": "off",
  12. "no-plusplus": "off",
  13. "func-names": "off"
  14. }
  15. }