Bring back eslint-plugin-import
This commit is contained in:
parent
1666e2b37a
commit
1b7ad7cab9
21 changed files with 910 additions and 34 deletions
|
@ -8,6 +8,7 @@
|
|||
"dependencies": {
|
||||
"@iarna/toml": "^2.2.5",
|
||||
"@iosevka/param": "31.8.0",
|
||||
"@unicode/unicode-16.0.0": "^1.6.0"
|
||||
"@unicode/unicode-16.0.0": "^1.6.0",
|
||||
"semver": "^7.6.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
"@iarna/toml": "^2.2.5",
|
||||
"@iosevka/param": "31.8.0",
|
||||
"@unicode/unicode-16.0.0": "^1.6.0",
|
||||
"cldr": "^7.5.0"
|
||||
"cldr": "^7.5.0",
|
||||
"@msgpack/msgpack": "^2.8.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
export default (function (args) {
|
||||
const theme = themes[args.theme];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
export default CharGrid;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
export default (function (args) {
|
||||
const theme = themes[args.theme];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
export default (function (args) {
|
||||
const theme = themes[args.theme];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
// prettier-ignore
|
||||
const languages = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
function* makeSample(theme, args) {
|
||||
const groupSet = new Set(args.ligSets);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
export default (function (args) {
|
||||
const theme = themes[args.theme];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
// prettier-ignore
|
||||
export const ssStrings = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
// prettier-ignore
|
||||
const ssStrings = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as themes from "../themes/index.mjs";
|
||||
import themes from "../themes/index.mjs";
|
||||
|
||||
export default (function (args) {
|
||||
const theme = themes[args.theme];
|
||||
|
|
|
@ -1,14 +1,18 @@
|
|||
export const light = {
|
||||
body: "#20242E",
|
||||
dimmed: "#20242E40",
|
||||
stress: "#048FBF",
|
||||
sigil: "#974caf",
|
||||
title: "#8757AD",
|
||||
};
|
||||
export const dark = {
|
||||
body: "#DEE4E3",
|
||||
dimmed: "#DEE4E340",
|
||||
stress: "#03AEE9",
|
||||
sigil: "#c49ed1",
|
||||
title: "#B77FDB",
|
||||
const themes = {
|
||||
light: {
|
||||
body: "#20242E",
|
||||
dimmed: "#20242E40",
|
||||
stress: "#048FBF",
|
||||
sigil: "#974caf",
|
||||
title: "#8757AD",
|
||||
},
|
||||
dark: {
|
||||
body: "#DEE4E3",
|
||||
dimmed: "#DEE4E340",
|
||||
stress: "#03AEE9",
|
||||
sigil: "#c49ed1",
|
||||
title: "#B77FDB",
|
||||
},
|
||||
};
|
||||
|
||||
export default themes;
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
"dependencies": {
|
||||
"semver": "^7.6.3",
|
||||
"wawoff2": "^2.0.1",
|
||||
"@iosevka/util": "31.8.0"
|
||||
"@iosevka/util": "31.8.0",
|
||||
"@unicode/unicode-16.0.0": "^1.6.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue