Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…site into dark-mode
  • Loading branch information
zouhelen committed Mar 3, 2025
2 parents 1bb5390 + 4fa65f4 commit 975844a
Show file tree
Hide file tree
Showing 52 changed files with 1,317 additions and 2,667 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/discord-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ on:
branches:
- main
pull_request:
types: [opened, closed, merged]
types: [opened, closed, review_requested, ready_for_review, reopened, locked, unlocked]

jobs:
notify-discord:
runs-on: ubuntu-latest

steps:
- name: Send Discord Notification
uses: Ilshidur/action-discord@master
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
with:
args: "📂 **Repository:** `${{ github.repository }}`\n🔀 **Branch:** `${{ github.ref }}`\n📝 **Commit Message:** `${{ github.event.head_commit.message }}`"
args: |
**Branch:** `${{ github.ref }}`
**User:** `${{ github.event.head_commit.author.username }}`
**Message:** `${{ github.event.head_commit.message }}`
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.associations": {
"*.css": "tailwindcss"
}
}
3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import codegen from "eslint-plugin-codegen";
import deprecation from "eslint-plugin-deprecation";
import drizzle from "eslint-plugin-drizzle";
import _import from "eslint-plugin-import";
import react from "eslint-plugin-react";
import simpleImportSort from "eslint-plugin-simple-import-sort";
import sortDestructureKeys from "eslint-plugin-sort-destructure-keys";

Expand All @@ -26,6 +27,7 @@ export default [
...compat.extends("eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended"),
{
plugins: {
react,
deprecation,
import: fixupPluginRules(_import),
"sort-destructure-keys": sortDestructureKeys,
Expand Down Expand Up @@ -58,6 +60,7 @@ export default [
"no-irregular-whitespace": "off",
"object-shorthand": "error",
"prefer-destructuring": "off",
"react/no-danger": "warn",
"sort-imports": "off",

"no-restricted-syntax": [
Expand Down
Loading

0 comments on commit 975844a

Please sign in to comment.