Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement cljstyle check #157

Merged
merged 4 commits into from
Feb 9, 2024
Merged

Implement cljstyle check #157

merged 4 commits into from
Feb 9, 2024

Commits on Feb 9, 2024

  1. Implement cljstyle check

    This commit introduces cljstyle linting for Clojure source files as a new action in GitHub workflow. Usage, rules, and styling configurations are added and properly integrated into the existing linting process. The configuration of `bb.edn` is adjusted accordingly to incorporate the cljstyle check and fix tasks.
    Denis Smet committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    0ce2cae View commit details
    Browse the repository at this point in the history
  2. Refactor code for improved readability

    This commit applies a uniform style to argument lists and function definitions in Clojure files. These changes improve code readability and maintainability by standardizing the structure and spacing of parentheses, line breaks, and indentation across various functions and requirements imports.
    Denis Smet committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    a77c039 View commit details
    Browse the repository at this point in the history
  3. Refactor test code for consistent formatting

    This commit tidies up test function formatting in ex_1_11_test.clj. It aims to improve code legibility and maintenance by standardizing the arrangement of parentheses and line breaks in the test functions.
    Denis Smet committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    af59190 View commit details
    Browse the repository at this point in the history
  4. Add cljstyle check in GitHub workflow

    A cljstyle check has been added in the GitHub workflows configuration file, main.yml. This bolsters the code formatting efforts by including checks for Clojure style conventions, aiming to improve and standardize the overall code legibility.
    Denis Smet committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    563d5b3 View commit details
    Browse the repository at this point in the history