Node-Red configuration
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.eslintrc 291B

123456789101112131415161718192021222324
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": 0,
  6. "id-length": 0,
  7. "new-cap": ["error", {
  8. "capIsNewExceptions": [
  9. "GetIntrinsic",
  10. ],
  11. }],
  12. },
  13. "overrides": [
  14. {
  15. "files": "test/**",
  16. "rules": {
  17. "max-lines-per-function": "off",
  18. },
  19. },
  20. ],
  21. }