-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare for Block Model v3, backwards compatible * Fix linting, better handling of the blockModel flag * Polish config, fix ESlint * Changelog * Fix lock * Missing files * Add block model flag example config * Fix typo * Move the whole wrapper to the same place * Fix container order * Add logo * More README
- Loading branch information
Showing
13 changed files
with
2,892 additions
and
2,058 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: prettier | ||
name: prettier | ||
entry: pnpm exec prettier --write | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(js|jsx|ts|tsx)$' | ||
types: [file] | ||
- id: eslint | ||
name: eslint | ||
entry: pnpm exec eslint --max-warnings=0 --fix | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(js|jsx|ts|tsx)$' | ||
types: [file] | ||
- id: stylelint | ||
name: stylelint | ||
entry: pnpm exec stylelint --fix | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(css|scss|less)$' | ||
types: [file] | ||
- id: i18n | ||
name: i18n | ||
entry: make ci-i18n | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(js|jsx|ts|tsx)$' | ||
types: [file] |
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.