An error occurred fetching the project authors.
  1. 16 Jun, 2021 1 commit
  2. 27 May, 2021 1 commit
  3. 21 May, 2021 1 commit
  4. 15 Mar, 2021 1 commit
  5. 01 Mar, 2021 1 commit
    • Paul Slaughter's avatar
      Update lint:eslint to not hardcode "." · b3c78a03
      Paul Slaughter authored
      - This allows us to quickly run this for specific
        file paths
      - Also updates previous references (i.e. CI) to
        add "."
      - Also removes lefthook reference to
        `yarn run internal...`
      - Also adds `:all` and `:all:fix` scripts
      b3c78a03
  6. 22 Feb, 2021 1 commit
  7. 18 Feb, 2021 1 commit
  8. 16 Feb, 2021 2 commits
    • Lukas Eipert's avatar
      Move prettier related yarn scripts to the lint scope · 6d5b9fd5
      Lukas Eipert authored
      Similar to `eslint`, this moves our `prettier` related scripts to the
      `lint` scope. We keep the old scripts in place and error out
      immediately, hinting the user to the new scripts.
      
      Thanks to the introduced `scripts/frontend/execute-on-staged-files.sh`
      and the fact that `prettier` itself has implemented better command line
      interfaces (`--check` and `--write`) since we introduced it, we are able
      to remove our home made node script in favor of those.
      
      Now the scripts carry the following names:
      
       - `prettier-all` => `lint:prettier`
       - `prettier-all-save` => `lint:prettier:fix`
       - `prettier-staged` => `lint:prettier:staged`
       - `prettier-staged-save`: `lint:prettier:staged:fixed`
      6d5b9fd5
    • Lukas Eipert's avatar
      Move eslint related yarn scripts to the lint scope · 61e992af
      Lukas Eipert authored
      We are currently overloading the `eslint` command with our custom eslint
      logic. Unfortunately this causes us to run `eslint` on all js/vue files
      and makes it hard to run custom eslint commands. One has to resort to
      running e.g. `node_modules/.bin/eslint` directly.
      
      In an effort to consolidate the situation we are renaming the commands
      (borrowing from our rake syntax) as follows:
      
      - `eslint` => `lint:eslint`
      - `eslint-fix` => `lint:eslint:fix`
      - `eslint-staged` => `lint:eslint:staged`
      - `eslint-staged-fix` => `lint:eslint:staged:fix`
      - `eslint-report` => `lint:eslint:report`
      
      All but the `eslint` command have been replaced with a command that
      errors out immediately and hints folks to the new command.
      61e992af
  9. 12 Feb, 2021 1 commit
  10. 28 May, 2020 1 commit
  11. 18 Mar, 2020 1 commit
  12. 17 Mar, 2020 1 commit
  13. 02 Mar, 2020 1 commit
  14. 26 Feb, 2020 1 commit
  15. 10 Jan, 2020 1 commit
    • Sean McGivern's avatar
      Add lint-changelog-filenames job · e8de0436
      Sean McGivern authored
      This job checks that files in the unreleased changelogs directories have
      the correct .yml extension. It ignores the .gitkeep files already there.
      e8de0436
  16. 05 Jan, 2020 2 commits
  17. 16 Dec, 2019 1 commit
  18. 31 Oct, 2019 1 commit
  19. 18 Sep, 2019 1 commit
  20. 29 Jul, 2019 2 commits
  21. 14 Feb, 2019 1 commit
    • Tim Zallmann's avatar
      Added Stylelint Setup · 0b535661
      Tim Zallmann authored
      Added stylelint to static-analysis
      Updated yarn dependencies
      CSS Fixes and rule adoptions of stylelint
      Added stylelint-scss
      Deduplicated yarn.lock to clear dependencies
      0b535661
  22. 31 Oct, 2018 1 commit
  23. 07 Jun, 2018 1 commit
  24. 14 Feb, 2018 2 commits
  25. 30 Jan, 2018 1 commit
  26. 26 Jan, 2018 3 commits
  27. 25 Jan, 2018 2 commits
  28. 26 Dec, 2017 1 commit
  29. 25 Dec, 2017 2 commits
  30. 23 Dec, 2017 1 commit
  31. 03 Nov, 2017 1 commit
  32. 02 Oct, 2017 1 commit
    • Sean McGivern's avatar
      Add static analysis job to find invalid YAML in changelogs · e9d769dc
      Sean McGivern authored
      When a changelog has invalid YAML (typically, there is an unquoted @ at the
      start of the author field), then the entry will be discarded. This script checks
      all unreleased changelogs for validity, and runs as part of the static-analysis
      step, so the pipeline will fail if this happens in future.
      e9d769dc