Skip to content

Commit 596fe83

Browse files
committed
feat: add job-listings-with-filtering project
1 parent f2c4e96 commit 596fe83

36 files changed

+563
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": false,
3+
"printWidth": 120,
4+
"singleQuote": true,
5+
"trailingComma": "all",
6+
"plugins": ["prettier-plugin-astro", "prettier-plugin-tailwindcss"]
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"astro-build.astro-vscode",
4+
"bradlc.vscode-tailwindcss",
5+
"dbaeumer.vscode-eslint",
6+
"esbenp.prettier-vscode"
7+
]
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.1.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Job listings with filtering
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineConfig } from 'astro/config'
2+
import { getAstroConfig } from 'shared/config/astro'
3+
4+
const config = getAstroConfig({ project: 'job-listings-with-filtering' })
5+
6+
// https://astro.build/config
7+
export default defineConfig(config)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import eslintConfigCustom from 'eslint-config-custom'
2+
3+
export default eslintConfigCustom
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "job-listings-with-filtering",
3+
"version": "0.0.0",
4+
"type": "module",
5+
"private": true,
6+
"scripts": {
7+
"astro": "astro",
8+
"dev": "astro dev",
9+
"preview": "astro preview",
10+
"build": "pnpm check && astro build",
11+
"lint": "eslint --fix src/**/*.{astro,ts}",
12+
"format": "prettier --write src/**/*.{astro,ts}",
13+
"check": "astro check --tsconfig tsconfig.json"
14+
},
15+
"engines": {
16+
"node": ">=20",
17+
"pnpm": ">=8"
18+
},
19+
"devDependencies": {
20+
"eslint-config-custom": "workspace:*",
21+
"shared": "workspace:*"
22+
}
23+
}
Loading
Binary file not shown.
Binary file not shown.
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)