-
Notifications
You must be signed in to change notification settings - Fork 370
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
375 changed files
with
3,904 additions
and
2,517 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,26 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.{js,jsx,ts,tsx}] | ||
insert_final_newline = true | ||
block_comment_start = /* | ||
block_comment = * | ||
block_comment_end = */ | ||
|
||
[*.md] | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = false | ||
trim_trailing_whitespace = false | ||
|
||
# The indent size used in the `package.json` file cannot be changed | ||
# https://github.com/npm/npm/pull/3180#issuecomment-16336516 | ||
[{*.yml,*.yaml,package.json}] | ||
indent_style = space | ||
indent_size = 2 |
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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
bin/ | ||
build/ | ||
.build/ | ||
node_modules/ | ||
references/ | ||
doc/ | ||
out/ | ||
preview/test-fonts | ||
.typeSXS_public | ||
*.7z | ||
*.zip | ||
*.tgz | ||
*.log | ||
*.exe | ||
*.aux | ||
*.fls | ||
*.toc | ||
*.out | ||
*.fdb_latexmk | ||
**.DS_Store | ||
**/*.packed.js | ||
ns-proof-page/fonts | ||
package-lock.json | ||
.private* | ||
config.private.json | ||
bin/ | ||
build/ | ||
.build/ | ||
node_modules/ | ||
references/ | ||
doc/ | ||
out/ | ||
preview/test-fonts | ||
.typeSXS_public | ||
*.7z | ||
*.zip | ||
*.tgz | ||
*.log | ||
*.exe | ||
*.aux | ||
*.fls | ||
*.toc | ||
*.out | ||
*.fdb_latexmk | ||
**.DS_Store | ||
**/*.packed.js | ||
ns-proof-page/fonts | ||
package-lock.json | ||
.private* | ||
config.private.json |
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,22 +1,22 @@ | ||
bin/* | ||
build/* | ||
out/* | ||
node_modules/ | ||
references/* | ||
doc/* | ||
preview/test-fonts | ||
.typeSXS_public | ||
*.7z | ||
*.zip | ||
*.log | ||
*.exe | ||
*.aux | ||
*.fls | ||
*.toc | ||
*.out | ||
*.fdb_latexmk | ||
**.DS_Store | ||
**/*.packed.js | ||
package-lock.json | ||
*.tgz | ||
bin/* | ||
build/* | ||
out/* | ||
node_modules/ | ||
references/* | ||
doc/* | ||
preview/test-fonts | ||
.typeSXS_public | ||
*.7z | ||
*.zip | ||
*.log | ||
*.exe | ||
*.aux | ||
*.fls | ||
*.toc | ||
*.out | ||
*.fdb_latexmk | ||
**.DS_Store | ||
**/*.packed.js | ||
package-lock.json | ||
*.tgz |
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,6 +1,6 @@ | ||
# .prettierrc | ||
printWidth: 100 | ||
useTabs: true | ||
tabWidth: 4 | ||
trailingComma: none | ||
# .prettierrc | ||
printWidth: 100 | ||
useTabs: true | ||
tabWidth: 4 | ||
trailingComma: none | ||
arrowParens: avoid |
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,21 +1,21 @@ | ||
"use strict"; | ||
|
||
const which = require("which"); | ||
const colors = require("colors/safe"); | ||
|
||
function check(util) { | ||
try { | ||
which.sync(util); | ||
console.error(colors.green(`External dependency <${util}> is present.`)); | ||
} catch (e) { | ||
console.error(colors.red(`External dependency <${util}> not found.`)); | ||
} | ||
} | ||
|
||
check("ttx"); | ||
check("otc2otf"); | ||
check("otf2otc"); | ||
check("otf2ttf"); | ||
check("otfccdump"); | ||
check("otfccbuild"); | ||
check("ttfautohint"); | ||
"use strict"; | ||
|
||
const which = require("which"); | ||
const colors = require("colors/safe"); | ||
|
||
function check(util) { | ||
try { | ||
which.sync(util); | ||
console.error(colors.green(`External dependency <${util}> is present.`)); | ||
} catch (e) { | ||
console.error(colors.red(`External dependency <${util}> not found.`)); | ||
} | ||
} | ||
|
||
check("ttx"); | ||
check("otc2otf"); | ||
check("otf2otc"); | ||
check("otf2ttf"); | ||
check("otfccdump"); | ||
check("otfccbuild"); | ||
check("ttfautohint"); |
Oops, something went wrong.