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

1234567891011121314151617
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": [2, 20],
  6. "eqeqeq": [2, "allow-null"],
  7. "func-name-matching": [1],
  8. "max-depth": [1, 4],
  9. "max-statements": [2, 26],
  10. "no-extra-parens": [1],
  11. "no-magic-numbers": [0],
  12. "no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
  13. "sort-keys": [0],
  14. }
  15. }