Skip to content

Commit 11eeb89

Browse files
committed
more cleanup
1 parent 2e88a99 commit 11eeb89

8 files changed

+5
-105
lines changed

.deepsource.toml

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
version = 1
22

3-
exclude_patterns = [
4-
"old/cv/assets/*.js",
5-
"old/cv2/assets/*.js"
6-
]
7-
83
[[analyzers]]
94
name = "test-coverage"
105

@@ -21,7 +16,5 @@ name = "javascript"
2116
plugins = ["vue"]
2217
environment = [
2318
"nodejs",
24-
"browser",
25-
"vitest",
26-
"cypress"
19+
"browser"
2720
]

.eslintrc.cjs

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@ module.exports = {
88
'eslint:recommended',
99
'@vue/eslint-config-prettier/skip-formatting'
1010
],
11-
overrides: [
12-
{
13-
files: [
14-
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}'
15-
],
16-
'extends': [
17-
'plugin:cypress/recommended'
18-
]
19-
}
20-
],
2111
parserOptions: {
2212
ecmaVersion: 'latest'
2313
}

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1+
custom: ["https://paypal.me/8EDM115", "https://www.buymeacoffee.com/edm115", "https://t.me/EDM115bots/698"]
12
github: EDM115
2-
custom: ["https://paypal.me/8EDM115", "https://www.buymeacoffee.com/edm115", "https://t.me/EDM115bots/170", "https://edm115.shadd.eu.org/"]

.prettierrc.json

-11
This file was deleted.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2023 EDM115
3+
Copyright (c) 2022-2024 EDM115
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

-65
Original file line numberDiff line numberDiff line change
@@ -31,71 +31,6 @@ Basically my website, hosted at [edm115.dev](https://edm115.dev) ([edm115.eu.org
3131

3232
---
3333

34-
<details>
35-
<summary>The boilerplate</summary>
36-
37-
## The boilerplate
38-
39-
This template should help get you started developing with Vue 3 in Vite.
40-
41-
## Recommended IDE Setup
42-
43-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
44-
45-
## Customize configuration
46-
47-
See [Vite Configuration Reference](https://vitejs.dev/config/).
48-
49-
## Project Setup
50-
51-
```sh
52-
npm install
53-
```
54-
55-
### Compile and Hot-Reload for Development
56-
57-
```sh
58-
npm run dev
59-
```
60-
61-
### Compile and Minify for Production
62-
63-
```sh
64-
npm run build
65-
```
66-
67-
### Run Unit Tests with [Vitest](https://vitest.dev/)
68-
69-
```sh
70-
npm run test:unit
71-
```
72-
73-
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
74-
75-
```sh
76-
npm run test:e2e:dev
77-
```
78-
79-
This runs the end-to-end tests against the Vite development server.
80-
It is much faster than the production build.
81-
82-
But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
83-
84-
```sh
85-
npm run build
86-
npm run test:e2e
87-
```
88-
89-
### Lint with [ESLint](https://eslint.org/)
90-
91-
```sh
92-
npm run lint
93-
```
94-
95-
</details>
96-
97-
---
98-
9934
### Old stuff
10035

10136
+ **[Main website](https://edm115.dev) status :** [![Better Uptime Badge](https://betteruptime.com/status-badges/v1/monitor/n6oc.svg)](https://up.edm115.dev/)

package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"dev": "vite",
77
"build": "vite build",
88
"preview": "vite preview",
9-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
10-
"format": "prettier --write src/"
9+
"lint": "eslint . --ext .vue,.js,.cjs,.mjs --fix --ignore-path .gitignore"
1110
},
1211
"dependencies": {
1312
"pinia": "^2.1.6",
@@ -18,13 +17,9 @@
1817
"devDependencies": {
1918
"@rushstack/eslint-patch": "^1.3.3",
2019
"@vitejs/plugin-vue": "^4.3.4",
21-
"@vitejs/plugin-vue-jsx": "^3.0.2",
22-
"@vue/eslint-config-prettier": "^8.0.0",
2320
"eslint": "^8.49.0",
24-
"eslint-plugin-cypress": "^2.15.1",
2521
"eslint-plugin-vue": "^9.17.0",
2622
"jsdom": "^22.1.0",
27-
"prettier": "^3.0.3",
2823
"vite": "^4.4.9"
2924
}
3025
}

vite.config.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@ import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import vue from '@vitejs/plugin-vue'
5-
import vueJsx from '@vitejs/plugin-vue-jsx'
65

76
// https://vitejs.dev/config/
87
export default defineConfig({
98
plugins: [
10-
vue(),
11-
vueJsx(),
9+
vue()
1210
],
1311
resolve: {
1412
alias: {

0 commit comments

Comments
 (0)