feat(setup): setted up pre commit hooks#14
Merged
Conversation
Added reuse prettier commitlint hook
husamettinarabaci
added a commit
that referenced
this pull request
Oct 19, 2025
* feat(setup): setted up pre commit hooks (#14) Added reuse prettier commitlint hook * feat(setup): setted up pre commit hooks (#15) Added reuse prettier commitlint hook 2 * feat(com): passed first communication (#17) Communicated with usb midi device first time * feat(pre-generating): prepaired before generating (#18) * feat(pre-generating): prepaired before generating All configuration prepared before generating * feat(pre-generating): prepaired before generating All configuration prepared before generating (extra files) * feat(dist): prepaired ios test flight dist (#19) Configured for ios distrubition
husamettinarabaci
added a commit
that referenced
this pull request
Oct 19, 2025
* feat(setup): setted up pre commit hooks (#14) Added reuse prettier commitlint hook * feat(setup): setted up pre commit hooks (#15) Added reuse prettier commitlint hook 2 * feat(com): passed first communication (#17) Communicated with usb midi device first time * feat(pre-generating): prepaired before generating (#18) * feat(pre-generating): prepaired before generating All configuration prepared before generating * feat(pre-generating): prepaired before generating All configuration prepared before generating (extra files) * feat(dist): prepaired ios test flight dist (#19) Configured for ios distrubition * feat(dist): prepaired ios test flight dist Configured for ios distrubition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added reuse prettier commitlint hook
🧩 Affected Module(s)
Mark the modules impacted by this PR:
This pull request introduces several improvements focused on licensing compliance, commit quality enforcement, and Flutter project setup. The key changes include adding SPDX license headers across project files, configuring REUSE license annotations, enforcing commit message standards with Commitlint and Husky hooks, and enhancing pre-commit checks for license compliance and Flutter code quality.
Licensing and Compliance
README.md,hexagenapp/README.md,hexagenapp/analysis_options.yaml,hexagenapp/lib/main.dart,hexagenapp/pubspec.yaml, andhexagenapp/test/widget_test.dartto ensure clear licensing information is present throughout the codebase. [1] [2] [3] [4] [5] [6]REUSE.tomlto annotate additional files and directories for license tracking, including Husky scripts and platform-specific Flutter directories, further strengthening license compliance.Commit Quality and Tooling
.husky/commit-msgnow enforces commit message standards using Commitlint and a project-specific config, and.husky/pre-commitruns REUSE license linting and comprehensive Flutter checks (formatting, analysis, tests, and optional builds) before allowing commits. [1] [2]package.jsonto include Commitlint and Husky as dev dependencies, and added apreparescript for Husky setup, ensuring commit hooks are installed and run as expected.Flutter Project Setup
pubspec.yamland ensuring analysis options are up to date. [1] [2]These changes collectively improve project maintainability, legal compliance, and code quality enforcement.