-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
76 additions
and
5 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,11 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
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 @@ | ||
# Automatically normalize line endings for all text-based files | ||
# http://git-scm.com/docs/gitattributes#_end_of_line_conversion | ||
* text=auto | ||
|
||
# For the following file types, normalize line endings to LF on | ||
# checkin and prevent conversion to CRLF when they are checked out | ||
# (this is required in order to prevent newline related issues like, | ||
# for example, after the build script is run) | ||
.* text eol=lf | ||
*.html text eol=lf | ||
*.css text eol=lf | ||
*.less text eol=lf | ||
*.styl text eol=lf | ||
*.scss text eol=lf | ||
*.sass text eol=lf | ||
*.sss text eol=lf | ||
*.js text eol=lf | ||
*.jsx text eol=lf | ||
*.ts text eol=lf | ||
*.tsx text eol=lf | ||
*.json text eol=lf | ||
*.md text eol=lf | ||
*.mjs text eol=lf | ||
*.sh text eol=lf | ||
*.svg text eol=lf | ||
*.txt text eol=lf | ||
*.xml text eol=lf |
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,12 @@ | ||
module.exports = { | ||
types: [ | ||
{ type: 'feat', section: 'Features' }, | ||
{ type: 'fix', section: 'Bug Fixes' }, | ||
{ type: 'refactor', section: 'Refactor' }, | ||
{ type: 'perf', section: 'Performance' }, | ||
{ type: 'chore', hidden: true }, | ||
{ type: 'docs', hidden: true }, | ||
{ type: 'style', hidden: true }, | ||
{ type: 'test', hidden: true }, | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
module.exports = { | ||
disableEmoji: false, | ||
maxMessageLength: 64, | ||
minMessageLength: 3, | ||
}; |
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,21 @@ | ||
{ | ||
"name": "zpix-pixel-font", | ||
"author": "[email protected]", | ||
"version": "3.1.0", | ||
"private": false, | ||
"sideEffect": false, | ||
"homepage": ".", | ||
"engines": { | ||
"node": ">=12", | ||
"npm": ">=6.4.0", | ||
"yarn": ">=1.15" | ||
}, | ||
"scripts": { | ||
"versionup": "standard-version -r patch", | ||
"versionup:minor": "standard-version -r minor", | ||
"versionup:major": "standard-version -r major", | ||
"versionup:init": "standard-version -f" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} |