Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kenowi-dev committed Sep 9, 2023
1 parent 73b7789 commit 5f8db77
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 39 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Karman Web CI
on:
pull_request:
push:
branches: [ main ]
tags: [ "*" ]
branches: [main]
tags: ["*"]

jobs:
type-check:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest
needs: [ type-check, lint ]
needs: [type-check, lint]
steps:
- name: Check Out Code
uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:
test-build:
name: Test Build
runs-on: ubuntu-latest
needs: [ type-check, lint ]
needs: [type-check, lint]
steps:
- name: Check Out Code
uses: actions/checkout@v3
Expand All @@ -73,7 +73,7 @@ jobs:
name: Publish
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
needs: [ test, test-build ]
needs: [test, test-build]
steps:
- name: Docker Meta
id: meta
Expand Down
68 changes: 34 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"name": "karman-web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check . && eslint .",
"format": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write ."
},
"devDependencies": {
"@sveltejs/kit": "^1.24.1",
"autoprefixer": "^10.4.15",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.0",
"postcss": "^8.4.29",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"svelte": "^4.2.0",
"svelte-adapter-bun": "^0.5.0",
"svelte-check": "^3.5.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"type": "module",
"dependencies": {
"flowbite": "^1.8.1"
}
"name": "karman-web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check . && eslint .",
"format": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write ."
},
"devDependencies": {
"@sveltejs/kit": "^1.24.1",
"autoprefixer": "^10.4.15",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.0",
"postcss": "^8.4.29",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"svelte": "^4.2.0",
"svelte-adapter-bun": "^0.5.0",
"svelte-check": "^3.5.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"type": "module",
"dependencies": {
"flowbite": "^1.8.1"
}
}

0 comments on commit 5f8db77

Please sign in to comment.