Skip to content

Commit d3e6c76

Browse files
committedMar 17, 2023
chore: add eslint and prettier
1 parent 81248c4 commit d3e6c76

20 files changed

+1949
-327
lines changed
 

‎.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

‎.eslintrc.json

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"commonjs": true,
5+
"es2021": true,
6+
"node": true
7+
},
8+
"extends": ["eslint:recommended", "airbnb-base", "prettier"],
9+
"plugins": ["import", "prettier"],
10+
"rules": {
11+
"prettier/prettier": "error",
12+
"import/no-unresolved": 0,
13+
"import/extensions": 0,
14+
"import/prefer-default-export": 0,
15+
"import/no-extraneous-dependencies": 0
16+
},
17+
"overrides": [
18+
{
19+
"files": ["*.astro"],
20+
"extends": ["plugin:astro/recommended"],
21+
"plugins": ["astro"],
22+
"parser": "astro-eslint-parser"
23+
},
24+
{
25+
"files": ["*.ts", "*.tsx"],
26+
"extends": [
27+
"plugin:react/recommended",
28+
"plugin:react/jsx-runtime",
29+
"plugin:react-hooks/recommended",
30+
"plugin:@typescript-eslint/eslint-recommended",
31+
"plugin:@typescript-eslint/recommended"
32+
],
33+
"plugins": ["@typescript-eslint", "react"],
34+
"parser": "@typescript-eslint/parser",
35+
"parserOptions": {
36+
"sourceType": "module",
37+
"ecmaVersion": 2021
38+
},
39+
"rules": {
40+
"react/no-unescaped-entities": 0,
41+
"react/jsx-filename-extension": [1, { "extensions": [".jsx", ".tsx"] }]
42+
},
43+
"settings": {
44+
"react": {
45+
"version": "detect"
46+
}
47+
}
48+
}
49+
]
50+
}

‎.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

‎.prettierrc.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true,
6+
"plugins": ["./node_modules/prettier-plugin-astro"],
7+
"overrides": [
8+
{
9+
"files": "*.astro",
10+
"options": {
11+
"parser": "astro"
12+
}
13+
}
14+
]
15+
}

‎README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
# ChatGPT-Vercel
2-
Building your own ChatGPT website by vercel
2+
Building your own ChatGPT website by Vercel
33

4-
## Quick start
4+
## Quick Start
55

6-
### 1.Create Project
6+
### 1. Create Project
77
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/GPTGenius/chatgpt-vercel&env=OPENAI_API_KEY)
88

99
### 2. Set OPENAI_API_KEY
1010
There are two ways to set your opeanai api key:
1111
- Set Vercel Environment Variables **OPENAI_API_KEY**
1212
- Rename your `.env.expample` file to `.env` and input **OPENAI_API_KEY**
1313

14-
15-
16-
1714
## Features
1815
- [x] Text
1916
- [ ] Images

‎astro.config.mjs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { defineConfig } from 'astro/config';
2-
import solidJs from "@astrojs/solid-js";
3-
import vercel from "@astrojs/vercel/edge";
4-
import tailwind from "@astrojs/tailwind";
2+
import solidJs from '@astrojs/solid-js';
3+
import vercel from '@astrojs/vercel/edge';
4+
import tailwind from '@astrojs/tailwind';
55

6-
import react from "@astrojs/react";
6+
import react from '@astrojs/react';
77

88
// https://astro.build/config
99
export default defineConfig({
1010
integrations: [solidJs(), tailwind(), react()],
11-
output: "server",
12-
adapter: vercel()
13-
});
11+
output: 'server',
12+
adapter: vercel(),
13+
});

‎package.json

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
2-
"name": "@example/basics",
2+
"name": "chatgpt-vercel",
33
"type": "module",
44
"version": "0.0.1",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
8+
"preinstall": "npx only-allow pnpm",
9+
"postinstall": "npx simple-git-hooks",
810
"dev": "cross-env NODE_ENV=development astro dev",
911
"start": "cross-env NODE_ENV=development astro dev",
1012
"build": "astro build",
1113
"preview": "astro preview",
12-
"astro": "astro"
14+
"astro": "astro",
15+
"lint": "eslint --fix --quiet --ext .js,.ts,.tsx,.astro ."
1316
},
1417
"dependencies": {
1518
"@astrojs/react": "^2.1.0",
@@ -31,9 +34,33 @@
3134
"@types/node": "^18.15.3",
3235
"@types/react": "^18.0.28",
3336
"@types/react-dom": "^18.0.11",
37+
"@typescript-eslint/eslint-plugin": "^5.55.0",
38+
"@typescript-eslint/parser": "^5.55.0",
39+
"astro-eslint-parser": "^0.12.0",
3440
"cross-env": "^7.0.3",
41+
"eslint": "^8.36.0",
42+
"eslint-config-airbnb-base": "^15.0.0",
43+
"eslint-config-prettier": "^8.7.0",
44+
"eslint-plugin-astro": "^0.25.0",
45+
"eslint-plugin-import": "^2.27.5",
46+
"eslint-plugin-prettier": "^4.2.1",
47+
"eslint-plugin-react": "^7.32.2",
48+
"eslint-plugin-react-hooks": "^4.6.0",
49+
"lint-staged": "^13.2.0",
50+
"prettier": "^2.8.4",
51+
"prettier-plugin-astro": "^0.8.0",
3552
"punycode": "^2.3.0",
53+
"simple-git-hooks": "^2.8.1",
3654
"tailwindcss": "^3.2.7",
3755
"typescript": "^4.9.5"
56+
},
57+
"lint-staged": {
58+
"**/*.{ts,tsx,js,astro}": [
59+
"eslint --fix --quiet",
60+
"prettier --write"
61+
]
62+
},
63+
"simple-git-hooks": {
64+
"pre-commit": "pnpm exec lint-staged --concurrent false"
3865
}
3966
}

0 commit comments

Comments
 (0)
Please sign in to comment.