Skip to content

Commit

Permalink
build: bump gobstones-scripts version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alanrodas committed Sep 5, 2024
1 parent a940b0f commit 8296a22
Show file tree
Hide file tree
Showing 99 changed files with 2,599 additions and 6,538 deletions.
20 changes: 10 additions & 10 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# http://editorconfig.org

root = true
root=true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset=utf-8
end_of_line=lf
indent_style=space
indent_size=4
trim_trailing_whitespace=true
insert_final_newline=true

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace=false

# Use 2 spaces since npm does not respect custom indentation settings
[package.json]
indent_style = space
indent_size = 2
indent_style=space
indent_size=2
308 changes: 0 additions & 308 deletions .eslintrc.js

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ dist/

# Docs generated folder
docs/

19 changes: 7 additions & 12 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
#!/usr/bin/env sh

# Load husky
. "$(dirname -- "$0")/_/husky.sh";

# Read parameters
COMMIT_MSG_FILE=$1;
COMMIT_MSG_FILE=$1

# Set failing on command fail, and undefined variable use
set -eu;
set -eu

# This hook is invoked by git-commit and git-merge, and can be
# bypassed with the --no-verify option. It takes a single
Expand All @@ -28,10 +23,10 @@ set -eu;
# message sent has the correct format for the project, aborting otherwise.

# Show welcome message
echo "**************************";
echo "Linting the commit message";
echo "**************************";
echo "";
echo "**************************"
echo "Linting the commit message"
echo "**************************"
echo ""

# Run commitlint
npx --no -- commitlint --edit ${1};
npx --no -- commitlint --edit ${1}
Loading

0 comments on commit 8296a22

Please sign in to comment.