Skip to content

Commit

Permalink
Merge branch 'prerelease'
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Jul 6, 2024
2 parents ffb6710 + 098699d commit 400c81f
Show file tree
Hide file tree
Showing 1,426 changed files with 22,316 additions and 19,097 deletions.
37 changes: 0 additions & 37 deletions .eslintrc.json

This file was deleted.

7 changes: 7 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@ printWidth: 100
useTabs: true
tabWidth: 4
arrowParens: avoid

overrides:
- files: "package.json"
options:
parser: json
tabWidth: 2
useTabs: false
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Modifications since last major version

### 30.3.2

* 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`).


### 30.3.1

* Add Capital Eszet (`VXAC`) variants with top-left corner.
Expand Down
9 changes: 9 additions & 0 deletions changes/30.3.2.md
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`).
274 changes: 137 additions & 137 deletions doc/PACKAGE-LIST.md

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions eslint.config.mjs
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],
},
},
];
10 changes: 5 additions & 5 deletions images/button-customize.dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 400c81f

Please sign in to comment.