custom-tips.json 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /**
  2. * This configuration file allows repo maintainers to configure extra details to be
  3. * printed alongside certain Rush messages. More documentation is available on the
  4. * Rush website: https://rushjs.io
  5. */
  6. {
  7. "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/custom-tips.schema.json",
  8. /**
  9. * Custom tips allow you to annotate Rush's console messages with advice tailored for
  10. * your specific monorepo.
  11. */
  12. "customTips": [
  13. // {
  14. // /**
  15. // * (REQUIRED) An identifier indicating a message that may be printed by Rush.
  16. // * If that message is printed, then this custom tip will be shown.
  17. // * The list of available tip identifiers can be found on this page:
  18. // * https://rushjs.io/pages/maintainer/custom_tips/
  19. // */
  20. // "tipId": "TIP_RUSH_INCONSISTENT_VERSIONS",
  21. //
  22. // /**
  23. // * (REQUIRED) The message text to be displayed for this tip.
  24. // */
  25. // "message": "For additional troubleshooting information, refer this wiki article:\n\nhttps://intranet.contoso.com/docs/pnpm-mismatch"
  26. // }
  27. ]
  28. }