mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-07 13:25:18 +02:00
Run oxfmt across repo, add format script and docs
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,28 +1,28 @@
|
||||
import type { PluginDefinition } from '@yaakapp/api';
|
||||
import { andromeda } from './themes/andromeda';
|
||||
import { atomOneDark } from './themes/atom-one-dark';
|
||||
import { ayuDark, ayuLight, ayuMirage } from './themes/ayu';
|
||||
import { blulocoDark, blulocoLight } from './themes/bluloco';
|
||||
import type { PluginDefinition } from "@yaakapp/api";
|
||||
import { andromeda } from "./themes/andromeda";
|
||||
import { atomOneDark } from "./themes/atom-one-dark";
|
||||
import { ayuDark, ayuLight, ayuMirage } from "./themes/ayu";
|
||||
import { blulocoDark, blulocoLight } from "./themes/bluloco";
|
||||
import {
|
||||
catppuccinFrappe,
|
||||
catppuccinLatte,
|
||||
catppuccinMacchiato,
|
||||
catppuccinMocha,
|
||||
} from './themes/catppuccin';
|
||||
import { cobalt2 } from './themes/cobalt2';
|
||||
import { dracula } from './themes/dracula';
|
||||
import { everforestDark, everforestLight } from './themes/everforest';
|
||||
import { fleetDark, fleetDarkPurple, fleetLight } from './themes/fleet';
|
||||
import { githubDark, githubLight } from './themes/github';
|
||||
import { githubDarkDimmed } from './themes/github-dimmed';
|
||||
import { gruvbox } from './themes/gruvbox';
|
||||
} from "./themes/catppuccin";
|
||||
import { cobalt2 } from "./themes/cobalt2";
|
||||
import { dracula } from "./themes/dracula";
|
||||
import { everforestDark, everforestLight } from "./themes/everforest";
|
||||
import { fleetDark, fleetDarkPurple, fleetLight } from "./themes/fleet";
|
||||
import { githubDark, githubLight } from "./themes/github";
|
||||
import { githubDarkDimmed } from "./themes/github-dimmed";
|
||||
import { gruvbox } from "./themes/gruvbox";
|
||||
// Yaak themes
|
||||
import { highContrast, highContrastDark } from './themes/high-contrast';
|
||||
import { horizon } from './themes/horizon';
|
||||
import { hotdogStand } from './themes/hotdog-stand';
|
||||
import { materialDarker } from './themes/material-darker';
|
||||
import { materialOcean } from './themes/material-ocean';
|
||||
import { materialPalenight } from './themes/material-palenight';
|
||||
import { highContrast, highContrastDark } from "./themes/high-contrast";
|
||||
import { horizon } from "./themes/horizon";
|
||||
import { hotdogStand } from "./themes/hotdog-stand";
|
||||
import { materialDarker } from "./themes/material-darker";
|
||||
import { materialOcean } from "./themes/material-ocean";
|
||||
import { materialPalenight } from "./themes/material-palenight";
|
||||
import {
|
||||
monokaiPro,
|
||||
monokaiProClassic,
|
||||
@@ -30,24 +30,24 @@ import {
|
||||
monokaiProOctagon,
|
||||
monokaiProRistretto,
|
||||
monokaiProSpectrum,
|
||||
} from './themes/monokai-pro';
|
||||
import { moonlight } from './themes/moonlight';
|
||||
import { lightOwl, nightOwl } from './themes/night-owl';
|
||||
import { noctisAzureus } from './themes/noctis';
|
||||
import { nord, nordLight, nordLightBrighter } from './themes/nord';
|
||||
} from "./themes/monokai-pro";
|
||||
import { moonlight } from "./themes/moonlight";
|
||||
import { lightOwl, nightOwl } from "./themes/night-owl";
|
||||
import { noctisAzureus } from "./themes/noctis";
|
||||
import { nord, nordLight, nordLightBrighter } from "./themes/nord";
|
||||
// VSCode themes
|
||||
import { oneDarkPro } from './themes/one-dark-pro';
|
||||
import { pandaSyntax } from './themes/panda';
|
||||
import { relaxing } from './themes/relaxing';
|
||||
import { rosePine, rosePineDawn, rosePineMoon } from './themes/rose-pine';
|
||||
import { shadesOfPurple, shadesOfPurpleSuperDark } from './themes/shades-of-purple';
|
||||
import { slackAubergine } from './themes/slack';
|
||||
import { solarizedDark, solarizedLight } from './themes/solarized';
|
||||
import { synthwave84 } from './themes/synthwave-84';
|
||||
import { tokyoNight, tokyoNightDay, tokyoNightStorm } from './themes/tokyo-night';
|
||||
import { triangle } from './themes/triangle';
|
||||
import { vitesseDark, vitesseLight } from './themes/vitesse';
|
||||
import { winterIsComing } from './themes/winter-is-coming';
|
||||
import { oneDarkPro } from "./themes/one-dark-pro";
|
||||
import { pandaSyntax } from "./themes/panda";
|
||||
import { relaxing } from "./themes/relaxing";
|
||||
import { rosePine, rosePineDawn, rosePineMoon } from "./themes/rose-pine";
|
||||
import { shadesOfPurple, shadesOfPurpleSuperDark } from "./themes/shades-of-purple";
|
||||
import { slackAubergine } from "./themes/slack";
|
||||
import { solarizedDark, solarizedLight } from "./themes/solarized";
|
||||
import { synthwave84 } from "./themes/synthwave-84";
|
||||
import { tokyoNight, tokyoNightDay, tokyoNightStorm } from "./themes/tokyo-night";
|
||||
import { triangle } from "./themes/triangle";
|
||||
import { vitesseDark, vitesseLight } from "./themes/vitesse";
|
||||
import { winterIsComing } from "./themes/winter-is-coming";
|
||||
|
||||
export const plugin: PluginDefinition = {
|
||||
themes: [
|
||||
|
||||
Reference in New Issue
Block a user