chore: update eslint config

pull/2933/head
Steven 1 year ago
parent 8773a3d2c1
commit be899cd027

@ -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…
Cancel
Save