From 5efb8499751d50081ea4e8f8a1e55fa69613e073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E6=B2=AB=E8=8A=B1=E7=81=ABzzz=F0=9F=8C=99?= Date: Fri, 6 Sep 2024 17:46:56 +0800 Subject: [PATCH] fix codacy reported issues --- .prettierignore | 1 + index.html | 32 ++++++++++++++++---------------- postcss.config.js | 4 ++-- tailwind.config.js | 11 ++++------- 4 files changed, 23 insertions(+), 25 deletions(-) diff --git a/.prettierignore b/.prettierignore index 401a493..91acc05 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,2 @@ +package.json _deprecated/ \ No newline at end of file diff --git a/index.html b/index.html index 31ea9da..57906ee 100644 --- a/index.html +++ b/index.html @@ -1,25 +1,25 @@ - + - - - - + + + + LoCyanFrp 2 Dashboard - - -
- - + + +
+ + diff --git a/postcss.config.js b/postcss.config.js index 2e7af2b..2b75bd8 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ export default { plugins: { tailwindcss: {}, - autoprefixer: {}, - }, + autoprefixer: {} + } } diff --git a/tailwind.config.js b/tailwind.config.js index ff48818..2c057d7 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,8 @@ /** @type {import('tailwindcss').Config} */ export default { - content: [ - "./index.html", - "./src/**/*.{vue,js,ts,jsx,tsx}", - ], + content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], theme: { - extend: {}, + extend: {} }, - plugins: [], -} \ No newline at end of file + plugins: [] +}