-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented Max-Rects packing #15
Closed
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
0d1a071
Update alpha value for sdf format output
soimy 5adb655
Add eslintrc
soimy 7d9e2f9
Fix Yoffset and padding issue.
soimy cfe5fc6
Update alpha value for sdf format output
soimy 9098b8c
Add new option ‘roundDecimal’
soimy 3cc9e8d
Implementation of Max-Rects Packing Algorithm
soimy f92f4a5
Add missing new font for test-generate.js
soimy 19cbab0
Merge remote-tracking branch 'origin/bin-pack-algorithm' into msdfgen1.4
soimy 967fa48
Match msdfgen 1.4 sdf output
soimy 1d4cb1a
Fix for the firstCommand bBox commit
soimy dcd6b88
Fix msdf font edge artifacts
soimy c692849
Revert "Add eslintrc"
soimy abd83db
Change testing font to ‘Din-condensed.ttf’
soimy f26f2de
Code review fix
soimy f154f92
Use private dylib for msdfgen osx binary
soimy 50f971d
Bin packing algorithm moved to npm module
soimy f8554f3
Update osx binary’s local dylib
soimy 4f1c68d
Clean package.json
soimy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,16 @@ | ||
{ | ||
"env": { | ||
"browser": false, | ||
"node": true, | ||
"es6": true | ||
}, | ||
"rules": { | ||
// "new-cap": [2], | ||
// "no-multi-spaces": [0], | ||
// "no-spaced-func": [0], | ||
// "no-multiple-empty-lines": [2], | ||
// "no-trailing-spaces": [2], | ||
// "max-statements": [2, 35], | ||
// "complexity": [2, 8] | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather use
prettier
to explicitly format code than eslint to enforce a code style.