mirror of
https://github.com/usememos/memos.git
synced 2025-10-30 00:06:25 +08:00
chore: update eslint config
This commit is contained in:
parent
8773a3d2c1
commit
be899cd027
2 changed files with 3 additions and 3 deletions
|
|
@ -13,7 +13,7 @@
|
|||
"sourceType": "module"
|
||||
},
|
||||
"plugins": ["react", "@typescript-eslint", "prettier"],
|
||||
"ignorePatterns": ["node_modules", "dist", "public", "src/wasm"],
|
||||
"ignorePatterns": ["node_modules", "dist", "public", "src/assets"],
|
||||
"rules": {
|
||||
"prettier/prettier": [
|
||||
"error",
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ import { createRoot } from "react-dom/client";
|
|||
import { Toaster } from "react-hot-toast";
|
||||
import { Provider } from "react-redux";
|
||||
import { RouterProvider } from "react-router-dom";
|
||||
import gomarkWasm from "./assets/gomark.wasm?url";
|
||||
import "./assets/wasm_exec.js";
|
||||
import "./css/global.css";
|
||||
import "./css/tailwind.css";
|
||||
import "./helpers/polyfill";
|
||||
|
|
@ -11,8 +13,6 @@ import "./less/highlight.less";
|
|||
import router from "./router";
|
||||
import store from "./store";
|
||||
import theme from "./theme";
|
||||
import gomarkWasm from "./assets/gomark.wasm?url";
|
||||
import "./assets/wasm_exec.js";
|
||||
|
||||
(async () => {
|
||||
const go = new window.Go();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue