-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/remix' of https://github.com/conceptadev/mix in…
…to feature/remix
- Loading branch information
Showing
13 changed files
with
40 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/usr/bin/env sh | ||
|
||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
# Find the absolute path to the fvm command | ||
FVM_PATH=$(command -v fvm) | ||
|
||
# Check if fvm command is found | ||
if [ -n "$FVM_PATH" ]; then | ||
# Add the directory containing the fvm command to PATH | ||
export PATH="$(dirname "$FVM_PATH"):$PATH" | ||
else | ||
echo "FVM not found. Please make sure it is installed and accessible." | ||
exit 1 | ||
fi | ||
|
||
dart run lint_staged | ||
|
||
|
||
# dart format --line-length 80 --set-exit-if-changed lib test | ||
# dart analyze --fatal-infos --fatal-warnings lib test | ||
# dart test | ||
|
||
# branch_name=$(git rev-parse --abbrev-ref HEAD) | ||
|
||
# if ! [[ $branch_name =~ ^(feat/|fix/|docs/|style/|refactor/|perf/|test/|build/|ci/|chore/|revert/).+ ]]; then | ||
# echo "Invalid branch name. Branch names must start with one of the following prefixes followed by a forward slash:" | ||
# echo "feat/, fix/, docs/, style/, refactor/, perf/, test/, build/, ci/, chore/, revert/" | ||
# echo "Example: feat/new-feature" | ||
# exit 1 | ||
# fi | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
name: mix | ||
|
||
environment: | ||
sdk: ">=3.0.0 <4.0.0" | ||
sdk: ">=3.0.6 <4.0.0" | ||
|
||
dev_dependencies: | ||
melos: ^6.0.0 | ||
husky: ^0.1.7 | ||
lint_staged: ^0.5.1 | ||
melos: ^6.1.0 | ||
|
||
lint_staged: | ||
'**.dart': dart fix --apply && dcm fix |