mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Re-enable formatting for .svelte files
This commit is contained in:
parent
e497a56f54
commit
ea5153e7a4
89 changed files with 103 additions and 112 deletions
|
@ -18,7 +18,7 @@
|
|||
"**/node_modules",
|
||||
"out/**",
|
||||
"**/*-lock.json",
|
||||
"**/*.{ts,svelte}",
|
||||
"**/*.{ts}",
|
||||
"qt/aqt/data/web/js/vendor/*.js",
|
||||
"ftl/qt-repo",
|
||||
"ftl/core-repo",
|
||||
|
|
|
@ -17,11 +17,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
import type { SpecialKeyParams } from "../../sveltelib/input-handler";
|
||||
import type { EditingInputAPI } from "../EditingArea.svelte";
|
||||
import { context } from "../NoteEditor.svelte";
|
||||
import type {
|
||||
RichTextInputAPI} from "../rich-text-input/RichTextInput.svelte";
|
||||
import {
|
||||
editingInputIsRichText
|
||||
} from "../rich-text-input/RichTextInput.svelte";
|
||||
import type { RichTextInputAPI } from "../rich-text-input/RichTextInput.svelte";
|
||||
import { editingInputIsRichText } from "../rich-text-input/RichTextInput.svelte";
|
||||
import { findSymbols, getAutoInsertSymbol, getExactSymbol } from "./symbols-table";
|
||||
import type {
|
||||
SymbolsEntry as SymbolsEntryType,
|
||||
|
|
|
@ -4,14 +4,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
-->
|
||||
<script lang="ts">
|
||||
import * as tr from "@tslib/ftl";
|
||||
import type {
|
||||
Decks,
|
||||
Generic,
|
||||
Notetypes} from "@tslib/proto";
|
||||
import {
|
||||
ImportExport,
|
||||
importExport
|
||||
} from "@tslib/proto";
|
||||
import type { Decks, Generic, Notetypes } from "@tslib/proto";
|
||||
import { ImportExport, importExport } from "@tslib/proto";
|
||||
|
||||
import Col from "../components/Col.svelte";
|
||||
import Container from "../components/Container.svelte";
|
||||
|
|
Loading…
Reference in a new issue