Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

30 строки
952 B

  1. #Reference: https://semgrep.dev/docs/writing-rules/rule-syntax/
  2. rules:
  3. - id: eval
  4. patterns:
  5. - pattern-not: eval("...")
  6. - pattern: eval(...)
  7. message: |
  8. Detected the use of eval(). eval() can be dangerous if used to evaluate
  9. dynamic content. Avoid it or use safe_eval().
  10. languages:
  11. - python
  12. severity: ERROR
  13. # translations
  14. - id: frappe-translation-syntax-python
  15. pattern-either:
  16. - pattern: _(f"...") # f-strings not allowed
  17. - pattern: _("..." + "...") # concatenation not allowed
  18. - pattern: _("") # empty string is meaningless
  19. - pattern: _("..." % ...) # Only positional formatters are allowed.
  20. - pattern: _("...".format(...)) # format should not be used before translating
  21. - pattern: _("...") + ... + _("...") # don't split strings
  22. message: |
  23. Incorrect use of translation function detected.
  24. Please refer: https://frappeframework.com/docs/user/en/translations
  25. languages:
  26. - python
  27. severity: ERROR