Skip to content

Commit afc414f

Browse files
committed
v-2.0.0 initial commit
1 parent 9b1be1b commit afc414f

File tree

425 files changed

+8880
-12057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

425 files changed

+8880
-12057
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}]
2+
charset = utf-8
3+
indent_size = 2
4+
indent_style = space
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
8+
end_of_line = lf
9+
max_line_length = 100

.eslintrc.cjs

-15
This file was deleted.

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ coverage
2828
*.sw?
2929

3030
*.tsbuildinfo
31+
.vercel

.prettierrc.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1+
12
{
23
"$schema": "https://json.schemastore.org/prettierrc",
34
"semi": false,
4-
"tabWidth": 2,
55
"singleQuote": true,
6-
"printWidth": 100,
7-
"trailingComma": "none"
8-
}
6+
"printWidth": 100
7+
}

LICENSE

-21
This file was deleted.

eslint.config.ts

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import pluginVue from 'eslint-plugin-vue'
2+
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'
3+
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
4+
5+
// To allow more languages other than `ts` in `.vue` files, uncomment the following lines:
6+
// import { configureVueProject } from '@vue/eslint-config-typescript'
7+
// configureVueProject({ scriptLangs: ['ts', 'tsx'] })
8+
// More info at https://github.com/vuejs/eslint-config-typescript/#advanced-setup
9+
10+
export default defineConfigWithVueTs(
11+
{
12+
name: 'app/files-to-lint',
13+
files: ['**/*.{ts,mts,tsx,vue}'],
14+
},
15+
16+
{
17+
name: 'app/files-to-ignore',
18+
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
19+
},
20+
21+
pluginVue.configs['flat/essential'],
22+
vueTsConfigs.recommended,
23+
skipFormatting,
24+
)

index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
1+
<!doctype html>
2+
<html lang="">
33
<head>
4-
<meta charset="UTF-8">
5-
<link rel="icon" href="./src/assets/images/favicon.ico">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>TailAdmin - Tailwind CSS Admin Dashboard Template</title>
88
</head>
9-
<body>
9+
<body class="dark:bg-gray-900">
1010
<div id="app"></div>
1111
<script type="module" src="/src/main.ts"></script>
1212
</body>

0 commit comments

Comments
 (0)