Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Dec 12, 2020
2 parents 58552df + fee79ee commit e8d1c8a
Show file tree
Hide file tree
Showing 375 changed files with 3,904 additions and 2,517 deletions.
26 changes: 26 additions & 0 deletions .editorconfig
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
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"extends": ["eslint:recommended", "prettier"],
"rules": {
"linebreak-style": ["error", "windows"],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"no-var": "error",
"no-console": 0,
Expand Down
52 changes: 26 additions & 26 deletions .gitignore
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
*.pdf
**.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
*.pdf
**.DS_Store
**/*.packed.js
ns-proof-page/fonts
package-lock.json
.private*
config.private.json
44 changes: 22 additions & 22 deletions .npmignore
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
*.pdf
**.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
*.pdf
**.DS_Store
**/*.packed.js
package-lock.json
*.tgz
10 changes: 5 additions & 5 deletions .prettierrc.yaml
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
42 changes: 21 additions & 21 deletions checkenv.js
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");
Loading

0 comments on commit e8d1c8a

Please sign in to comment.