Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 8月 10, 2022
  2. 6月 13, 2022
  3. 5月 04, 2022
  4. 4月 04, 2022
  5. 11月 01, 2021
  6. 4月 19, 2021
  7. 4月 15, 2021
  8. 4月 12, 2021
  9. 4月 10, 2021
  10. 4月 08, 2021
  11. 4月 07, 2021
  12. 3月 29, 2021
  13. 3月 17, 2021
  14. 7月 17, 2020
  15. 7月 15, 2020
  16. 5月 29, 2020
  17. 7月 18, 2019
  18. 5月 22, 2019
    • Stan Hu's avatar
      Move files from lib/haml_lint to haml_lint · 27381e22
      Stan Hu 创作于
      Files in lib will be eager loaded and hence will require haml_lint to be
      loaded. Since this is only a development dependency, we can't assume
      this gem will be available in production, so it should never be loaded
      in production.
      27381e22
  19. 5月 21, 2019
    • Luke Bennett's avatar
      Add HamlLint::Linter::NoPlainNodes linter · 95afdfae
      Luke Bennett 创作于
      Add a simple haml_lint linter to report all plain nodes.
      "Plain nodes" in HAML are scritpless plaintext leaf nodes.
      
      Add haml-lint_todo to onboard new haml linters.
      Excludes existing NoPlainNodes lints.
      95afdfae
    • Luke Bennett's avatar
      Add HamlLint::Linter::NoPlainNodes linter · 2082d0c7
      Luke Bennett 创作于
      Add a simple haml_lint linter to report all plain nodes.
      "Plain nodes" in HAML are scritpless plaintext leaf nodes.
      
      Add haml-lint_todo to onboard new haml linters.
      Excludes existing NoPlainNodes lints.
      2082d0c7
  20. 5月 20, 2019
  21. 5月 05, 2019
  22. 9月 01, 2018
  23. 8月 26, 2018
    • Bob Van Landuyt's avatar
      Reject ruby interpolation in externalized strings · f613924b
      Bob Van Landuyt 创作于
      When using ruby interpolation in externalized strings, they can't be
      detected. Which means they will never be presented to be translated.
      
      To mix variables into translations we need to use `sprintf`
      instead.
      
      Instead of:
      
          _("Hello #{subject}")
      
      Use:
      
          _("Hello %{subject}) % { subject: 'world' }
      f613924b
    • Bob Van Landuyt's avatar
      Reject ruby interpolation in externalized strings · 08c0a1b8
      Bob Van Landuyt 创作于
      When using ruby interpolation in externalized strings, they can't be
      detected. Which means they will never be presented to be translated.
      
      To mix variables into translations we need to use `sprintf`
      instead.
      
      Instead of:
      
          _("Hello #{subject}")
      
      Use:
      
          _("Hello %{subject}) % { subject: 'world' }
      08c0a1b8
  24. 8月 10, 2017
  25. 8月 07, 2017
加载中