-
Notifications
You must be signed in to change notification settings - Fork 594
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
1,426 changed files
with
22,316 additions
and
19,097 deletions.
There are no files selected for viewing
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
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,9 @@ | ||
* Fix side bearings of `U+02CC` under Quasi-Proportional. | ||
* Improve glyph shape for `U+02ED`. | ||
* Add characters: | ||
- LEFTWARDS ARROW-TAIL (`U+2919`) ... RIGHTWARDS DOUBLE ARROW-TAIL (`U+291C`). | ||
- MODIFIER LETTER STRESS AND HIGH TONE (`U+A720`). | ||
- MODIFIER LETTER STRESS AND LOW TONE (`U+A721`). | ||
- BLACK HEART (`U+1F5A4`). | ||
- LEFT HALF CIRCLE (`U+1F907`). | ||
- WHITE HEART (`U+1F90D`). |
Large diffs are not rendered by default.
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,42 @@ | ||
import globals from "globals"; | ||
import js from "@eslint/js"; | ||
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
eslintPluginPrettierRecommended, | ||
|
||
// Ignore machine-generated files | ||
{ | ||
ignores: [ | ||
"packages/font-glyphs/**/*.mjs", | ||
"packages/font-otl/**/*.mjs", | ||
"packages/font/src/generated/ttfa-ranges.mjs", // Machine-generated | ||
], | ||
}, | ||
|
||
// Main monorepo | ||
{ | ||
files: ["packages/*/src/**/*.mjs", "tools/*/src/**/*.mjs", "verdafile.mjs"], | ||
languageOptions: { | ||
ecmaVersion: 2022, | ||
sourceType: "module", | ||
globals: { | ||
...globals.node, | ||
...globals.nodeBuiltin, | ||
|
||
...globals.es2021, | ||
}, | ||
}, | ||
|
||
rules: { | ||
semi: ["error", "always"], | ||
"no-var": "error", | ||
"no-console": 0, | ||
"no-constant-condition": ["error", { checkLoops: false }], | ||
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"], | ||
"no-unused-vars": ["off"], | ||
complexity: ["warn", 16], | ||
}, | ||
}, | ||
]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.