Skip to content

Commit 9b3f3b6

Browse files
committed
init
1 parent ddd30cd commit 9b3f3b6

19 files changed

+4858
-2629
lines changed

.eslintrc.js

-30
This file was deleted.

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,23 @@ pnpm-debug.log*
88
lerna-debug.log*
99

1010
node_modules
11+
.DS_Store
1112
dist
1213
dist-ssr
14+
coverage
1315
*.local
1416

17+
/cypress/videos/
18+
/cypress/screenshots/
19+
1520
# Editor directories and files
1621
.vscode/*
1722
!.vscode/extensions.json
1823
.idea
19-
.DS_Store
2024
*.suo
2125
*.ntvs*
2226
*.njsproj
2327
*.sln
2428
*.sw?
29+
30+
*.tsbuildinfo

.prettierrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://json.schemastore.org/prettierrc",
3+
"printWidth": 100,
4+
"singleQuote": false
5+
}

src/types/vite-env.d.ts env.d.ts

File renamed without changes.

eslint.config.js

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
import pluginVue from "eslint-plugin-vue";
2+
import vueTsEslintConfig from "@vue/eslint-config-typescript";
3+
import pluginVitest from "@vitest/eslint-plugin";
4+
import skipFormatting from "@vue/eslint-config-prettier/skip-formatting";
5+
6+
export default [
7+
{
8+
name: "app/files-to-lint",
9+
files: ["**/*.{ts,mts,tsx,vue}"],
10+
},
11+
12+
{
13+
name: "app/files-to-ignore",
14+
ignores: ["**/dist/**", "**/dist-ssr/**", "**/coverage/**"],
15+
},
16+
17+
...pluginVue.configs["flat/recommended"],
18+
...vueTsEslintConfig(),
19+
20+
{
21+
...pluginVitest.configs.recommended,
22+
files: ["src/**/__tests__/*"],
23+
},
24+
skipFormatting,
25+
26+
{
27+
rules: {
28+
"no-console": "warn",
29+
"no-debugger": "warn",
30+
"no-var": "error",
31+
"prefer-const": "error",
32+
"no-new-object": "error",
33+
"object-shorthand": "error",
34+
"no-array-constructor": "error",
35+
"prefer-destructuring": "error",
36+
"prefer-template": "error",
37+
"func-style": "error",
38+
"no-loop-func": "error",
39+
"prefer-rest-params": "error",
40+
"default-param-last": "error",
41+
"no-param-reassign": "error",
42+
"prefer-spread": "error",
43+
"prefer-arrow-callback": "error",
44+
"no-duplicate-imports": "error",
45+
"dot-notation": "error",
46+
"no-unneeded-ternary": "error",
47+
"no-warning-comments": "warn",
48+
"no-unused-vars": "off", // Handled by "@typescript-eslint/no-unused-vars"
49+
},
50+
},
51+
{
52+
rules: {
53+
"@typescript-eslint/ban-ts-comment": "warn",
54+
"@typescript-eslint/no-explicit-any": "warn",
55+
"@typescript-eslint/no-non-null-assertion": "off",
56+
"@typescript-eslint/no-unused-vars": [
57+
"error",
58+
{
59+
args: "all",
60+
argsIgnorePattern: "^_",
61+
caughtErrorsIgnorePattern: "^_",
62+
},
63+
],
64+
},
65+
},
66+
];

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />

0 commit comments

Comments
 (0)