From a00ac5c6aacb4237a8a8f9faebea58af7bd205e5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E8=89=AF?= <841369634@qq.com>
Date: Fri, 15 Nov 2024 16:49:44 +0800
Subject: [PATCH] fix Style

---
 packages/core/src/shell/shell.js                         | 4 ++--
 packages/gui/package.json                                | 2 +-
 packages/gui/src/bridge/front.js                         | 2 +-
 packages/gui/src/view/pages/server.vue                   | 4 ++--
 packages/mitmproxy/src/lib/interceptor/impl/req/proxy.js | 1 -
 5 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/packages/core/src/shell/shell.js b/packages/core/src/shell/shell.js
index 0c4dd1ad..0c06d6d0 100644
--- a/packages/core/src/shell/shell.js
+++ b/packages/core/src/shell/shell.js
@@ -1,12 +1,12 @@
 const childProcess = require('child_process')
 const os = require('os')
-
-const _execFile = childProcess.execFile
 const fixPath = require('fix-path')
 const iconv = require('iconv-lite')
 const PowerShell = require('node-powershell')
 const log = require('../utils/util.log')
 
+const _execFile = childProcess.execFile
+
 fixPath()
 
 class SystemShell {
diff --git a/packages/gui/package.json b/packages/gui/package.json
index 464917a6..c897fca8 100644
--- a/packages/gui/package.json
+++ b/packages/gui/package.json
@@ -24,7 +24,7 @@
     "@docmirror/dev-sidecar": "^1.8.9",
     "@docmirror/mitmproxy": "^1.8.9",
     "@mihomo-party/sysproxy": "^2.0.4",
-    "@natmri/platform-napi": "^0.0.8",
+    "@natmri/platform-napi": "^0.0.7",
     "adm-zip": "^0.5.5",
     "ant-design-vue": "^1.6.5",
     "compressing": "^1.5.1",
diff --git a/packages/gui/src/bridge/front.js b/packages/gui/src/bridge/front.js
index 8e6f51da..c52a2e72 100644
--- a/packages/gui/src/bridge/front.js
+++ b/packages/gui/src/bridge/front.js
@@ -1,5 +1,5 @@
-import autoStart from './auto-start/front'
 // import api from './api/front'
+import autoStart from './auto-start/front'
 import error from './error/front'
 import fileSelector from './file-selector/front'
 import onClose from './on-close/front'
diff --git a/packages/gui/src/view/pages/server.vue b/packages/gui/src/view/pages/server.vue
index a094000f..1562f84d 100644
--- a/packages/gui/src/view/pages/server.vue
+++ b/packages/gui/src/view/pages/server.vue
@@ -1,12 +1,12 @@
 <script>
 import _ from 'lodash'
-import vueJsonEditor from 'vue-json-editor-fix-cn'
+import VueJsonEditor from 'vue-json-editor-fix-cn'
 import Plugin from '../mixins/plugin'
 
 export default {
   name: 'Server',
   components: {
-    VueJsonEditor: vueJsonEditor,
+    VueJsonEditor,
   },
   mixins: [Plugin],
   data () {
diff --git a/packages/mitmproxy/src/lib/interceptor/impl/req/proxy.js b/packages/mitmproxy/src/lib/interceptor/impl/req/proxy.js
index 3b940388..6dcf19cc 100644
--- a/packages/mitmproxy/src/lib/interceptor/impl/req/proxy.js
+++ b/packages/mitmproxy/src/lib/interceptor/impl/req/proxy.js
@@ -4,7 +4,6 @@ const lodash = require('lodash')
 // 替换占位符
 function replacePlaceholder (url, rOptions, matched) {
   if (url.includes('${')) {
-    // no-template-curly-in-string
     // eslint-disable-next-line no-template-curly-in-string
     url = url.replace('${host}', rOptions.hostname)