Skip to content

Commit 627d057

Browse files
committed
shuffle things around a bit
1 parent 5063164 commit 627d057

16 files changed

+729
-845
lines changed

.github/readme.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ I host the base domain on a dedicated server from [Hetzner](https://hetzner.com/
1212

1313
## Goals
1414

15-
Some goals are listed in the [todo.md](/todo.md) file.
16-
However, the main goals I have for this site are as follows:
15+
The main goals I have for this site are as follows:
1716

1817
### Modern Standards
1918

.github/workflows/eslint.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: ESLint
22

3-
on:
4-
push:
5-
branches:
6-
- "*"
7-
pull_request:
8-
branches:
9-
- "*"
3+
on: push
104

115
jobs:
126
run-linters:

.github/workflows/stylelint.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
name: StyleLint
22

3-
on:
4-
push:
5-
branches:
6-
- "*"
7-
pull_request:
8-
branches:
9-
- "*"
10-
3+
on: push
114
jobs:
125
run-linters:
136
name: Run linters

eslint.config.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
import eslint from "@eslint/js";
44
import tseslint from "typescript-eslint";
55
import jsxA11y from "eslint-plugin-jsx-a11y";
6-
import globals from "globals";
7-
import solid from "eslint-plugin-solid/dist/configs/typescript.js";
8-
import prettier from "eslint-plugin-prettier/recommended";
6+
import solid from "eslint-plugin-solid/configs/typescript";
97

108
export default tseslint.config(
119
eslint.configs.recommended,
@@ -15,12 +13,10 @@ export default tseslint.config(
1513
...tseslint.configs.strictTypeChecked,
1614
...tseslint.configs.stylisticTypeChecked,
1715
solid,
18-
prettier,
19-
{ignores: ["dist"]},
16+
{ignores: ["dist", "*.config.js"]},
2017
{
2118
...solid,
2219
languageOptions: {
23-
globals: globals.browser,
2420
parserOptions: {
2521
project: true,
2622
tsconfigRootDir: "tsconfig.json"

package.json

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,23 @@
77
"csslint": "stylelint \"**/*.css\""
88
},
99
"devDependencies": {
10-
"@eslint/js": "^9.7.0",
11-
"@types/eslint__js": "^8.42.3",
12-
"eslint": "9.7.0",
13-
"eslint-config-prettier": "^9.1.0",
14-
"eslint-plugin-jsx-a11y": "^6.9.0",
15-
"eslint-plugin-prettier": "^5.2.1",
16-
"eslint-plugin-solid": "^0.14.1",
17-
"globals": "^15.8.0",
10+
"@eslint/js": "^9.10.0",
11+
"eslint": "9.10.0",
12+
"eslint-plugin-jsx-a11y": "^6.10.0",
13+
"eslint-plugin-solid": "^0.14.3",
1814
"prettier": "^3.3.3",
19-
"stylelint": "^16.7.0",
15+
"stylelint": "^16.9.0",
2016
"stylelint-config-recommended": "^14.0.1",
21-
"typescript": "^5.5.4",
22-
"typescript-eslint": "^7.17.0",
23-
"vite": "^5.3.5",
17+
"typescript": "^5.6.2",
18+
"typescript-eslint": "^8.5.0",
19+
"vite": "^5.4.5",
2420
"vite-plugin-solid": "^2.10.2",
2521
"vite-plugin-solid-svg": "^0.8.1",
26-
"vite-plugin-webfont-dl": "^3.9.4"
22+
"vite-plugin-webfont-dl": "^3.9.5"
2723
},
2824
"dependencies": {
29-
"@solidjs/router": "^0.14.1",
30-
"solid-js": "^1.8.19"
25+
"@solidjs/router": "^0.14.5",
26+
"solid-js": "^1.8.22"
3127
},
32-
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
28+
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
3329
}

0 commit comments

Comments
 (0)