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

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "extends": "standard",
  3. "parser": "@typescript-eslint/parser",
  4. "plugins": ["@typescript-eslint"],
  5. "env": {
  6. "browser": true
  7. },
  8. "rules": {
  9. "semi": ["error", "always"],
  10. "no-var": "error",
  11. "no-unused-vars": 0,
  12. "no-global-assign": 0,
  13. "guard-for-in": 2,
  14. "space-before-function-paren": 0,
  15. "@typescript-eslint/no-unused-vars": ["error", {
  16. "vars": "all",
  17. "args": "after-used",
  18. "ignoreRestSiblings": false
  19. }],
  20. "prefer-const": ["error", {
  21. "destructuring": "all"
  22. }],
  23. "standard/no-callback-literal": "off",
  24. "node/no-deprecated-api": 0
  25. },
  26. "parserOptions": {
  27. "ecmaVersion": 6,
  28. "sourceType": "module"
  29. },
  30. "overrides": [
  31. {
  32. "files": "*.d.ts",
  33. "rules": {
  34. "no-useless-constructor": "off",
  35. "no-undef": "off"
  36. }
  37. }
  38. ]
  39. }