-
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve build tooling and modernize dependencies (#1128)
* chore: wip * style: standardize formatting across TS configs and docs - Format TypeScript configuration files for consistent spacing - Add consistent newlines and semicolons in README code examples - Align formatting between sdk and sdk-communication-layer packages * chore: clean up initializeMobileProvider by removing debug log Cleaned up the initializeMobileProvider by removing an unnecessary console log statement in the setInitializing function. * chore: enhance commitlint config with body-max-line-length rule Enhanced the commitlint configuration by adding a rule to limit the body of commit messages to 100 characters per line.
- Loading branch information
1 parent
744ab6d
commit a9680c5
Showing
17 changed files
with
1,281 additions
and
332 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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'body-max-line-length': [0, 'always', 100], | ||
}, | ||
}; |
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
Oops, something went wrong.