-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
938 additions
and
3,263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,16 @@ | ||
name: ESLint | ||
name: Code quality | ||
|
||
on: push | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
cache: pnpm | ||
|
||
- name: Install Node.js dependencies | ||
run: pnpm install | ||
|
||
- name: Run linters | ||
run: pnpm run lint | ||
quality: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Biome | ||
uses: biomejs/setup-biome@v2 | ||
with: | ||
version: latest | ||
- name: Run Biome | ||
run: biome ci . |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
{ | ||
"cSpell.words": [ | ||
"AOCR", | ||
"Automod", | ||
"automoderation", | ||
"cplusplus", | ||
"csslint", | ||
"Dotfiles", | ||
"multipass", | ||
"visualstudiocode", | ||
"webfont" | ||
], | ||
"cSpell.ignoreWords": [ | ||
"Wolfie's" | ||
] | ||
} | ||
"cSpell.words": [ | ||
"AOCR", | ||
"Automod", | ||
"automoderation", | ||
"cplusplus", | ||
"csslint", | ||
"Dotfiles", | ||
"multipass", | ||
"visualstudiocode", | ||
"webfont" | ||
], | ||
"cSpell.ignoreWords": ["Wolfie's"], | ||
"editor.defaultFormatter": "biomejs.biome", | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit", | ||
"source.organizeImports.biome": "explicit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json", | ||
"vcs": { | ||
"enabled": true, | ||
"clientKind": "git", | ||
"useIgnoreFile": true | ||
}, | ||
"files": { | ||
"ignoreUnknown": false, | ||
"ignore": [] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "tab" | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"style": { | ||
"noNonNullAssertion": "off" | ||
} | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "double" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,21 @@ | ||
{ | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"lint": "eslint", | ||
"csslint": "stylelint \"**/*.css\"" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.10.0", | ||
"eslint": "9.10.0", | ||
"eslint-plugin-jsx-a11y": "^6.10.0", | ||
"eslint-plugin-solid": "^0.14.3", | ||
"prettier": "^3.3.3", | ||
"stylelint": "^16.9.0", | ||
"stylelint-config-recommended": "^14.0.1", | ||
"typescript": "^5.6.2", | ||
"typescript-eslint": "^8.5.0", | ||
"vite": "^5.4.5", | ||
"vite-plugin-solid": "^2.10.2", | ||
"vite-plugin-solid-svg": "^0.8.1", | ||
"vite-plugin-webfont-dl": "^3.9.5" | ||
}, | ||
"dependencies": { | ||
"@solidjs/router": "^0.14.5", | ||
"solid-js": "^1.8.22" | ||
}, | ||
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c" | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"lint": "biome ci" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.9.2", | ||
"typescript": "^5.6.2", | ||
"vite": "^5.4.6", | ||
"vite-plugin-solid": "^2.10.2", | ||
"vite-plugin-solid-svg": "^0.8.1", | ||
"vite-plugin-webfont-dl": "^3.9.5" | ||
}, | ||
"dependencies": { | ||
"@solidjs/router": "^0.14.5", | ||
"solid-js": "^1.8.22" | ||
}, | ||
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c" | ||
} |
Oops, something went wrong.