From a52094e2786489360632251255845ae58c7cbba5 Mon Sep 17 00:00:00 2001 From: hawk86104 Date: Wed, 15 May 2024 18:45:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9eslint=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 2 +- .prettierrc.js | 7 ++++--- tsconfig.json | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index eef80d27..6be834db 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -27,7 +27,7 @@ module.exports = { 'vue/comma-dangle': 'off', 'no-debugger': 'off', 'guard-for-in': 'off', - // "semi": "off", + semi: ['error', 'never'], // "init-declarations": "off", // "space-unary-ops": "off", 'import/no-unresolved': [ diff --git a/.prettierrc.js b/.prettierrc.js index 0e4510f7..59fc5641 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,4 +1,5 @@ +/* eslint-disable import/no-extraneous-dependencies, import/extensions */ module.exports = { - ...require("@webank/eslint-config-webank/.prettierrc.js"), - semi:false -}; \ No newline at end of file + ...require('@webank/eslint-config-webank/.prettierrc.js'), + semi: false, +} diff --git a/tsconfig.json b/tsconfig.json index 61020fd9..d59ac227 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,9 +2,9 @@ "compilerOptions": { "outDir": "build/dist", "module": "esnext", - "target": "esnext", + "target": "es2017", "types": [ - "./common/vite-plugin-glsl/vite-plugin-glsl-ext.d.ts" + "./src/common/vite-plugin-glsl-ext.d.ts" ], "lib": [ "esnext",