Skip to content

Commit 2e4dad6

Browse files
committed
prettier
1 parent fbf77cb commit 2e4dad6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+687
-390
lines changed

.eslintignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dev-dist
2+
dist
3+
node_modules
4+
storybook-static
5+
pnpm-lock.yaml

.eslintrc.cjs

-14
This file was deleted.

.eslintrc.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2020": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"plugin:react-hooks/recommended",
10+
"plugin:storybook/recommended"
11+
],
12+
"parser": "@typescript-eslint/parser",
13+
"plugins": ["react-refresh"],
14+
"root": true,
15+
"rules": {
16+
"react-refresh/only-export-components": [
17+
"warn",
18+
{
19+
"allowConstantExport": true
20+
}
21+
]
22+
}
23+
}

.github/workflows/jekyll-gh-pages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Deploy Jekyll with GitHub Pages dependencies preinstalled
44
on:
55
# Runs on pushes targeting the default branch
66
push:
7-
branches: ["main"]
7+
branches: ['main']
88

99
# Allows you to run this workflow manually from the Actions tab
1010
workflow_dispatch:
@@ -18,7 +18,7 @@ permissions:
1818
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
1919
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2020
concurrency:
21-
group: "pages"
21+
group: 'pages'
2222
cancel-in-progress: false
2323

2424
jobs:

.prettierignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dev-dist
2+
dist
3+
node_modules
4+
storybook-static
5+
pnpm-lock.yaml

.prettierrc.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSameLine": false,
4+
"bracketSpacing": true,
5+
"endOfLine": "lf",
6+
"jsxSingleQuote": true,
7+
"plugins": [
8+
"prettier-plugin-tailwindcss",
9+
"prettier-package-json",
10+
"prettier-plugin-organize-imports",
11+
"prettier-plugin-sort-json"
12+
],
13+
"printWidth": 80,
14+
"quoteProps": "as-needed",
15+
"semi": true,
16+
"singleAttributePerLine": true,
17+
"singleQuote": true,
18+
"tabWidth": 2,
19+
"trailingComma": "all",
20+
"useTabs": false
21+
}

index.html

+12-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,21 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<meta name="description" content="Chat App" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1.0"
8+
/>
9+
<meta
10+
name="description"
11+
content="Chat App"
12+
/>
713
<title>Chat</title>
814
</head>
915
<body>
1016
<div id="app"></div>
11-
<script type="module" src="/src/main.tsx"></script>
17+
<script
18+
type="module"
19+
src="/src/main.tsx"
20+
></script>
1221
</body>
1322
</html>

package.json

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"version": "0.0.0",
55
"type": "module",
66
"scripts": {
7+
"format": "prettier --write .",
78
"dev": "vite",
89
"build": "tsc && vite build",
910
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
@@ -42,6 +43,11 @@
4243
"eslint-plugin-react-refresh": "^0.4.6",
4344
"eslint-plugin-storybook": "^0.8.0",
4445
"postcss": "^8.4.38",
46+
"prettier": "^3.3.3",
47+
"prettier-package-json": "^2.8.0",
48+
"prettier-plugin-organize-imports": "^4.0.0",
49+
"prettier-plugin-sort-json": "^4.0.0",
50+
"prettier-plugin-tailwindcss": "^0.6.5",
4551
"storybook": "^8.1.11",
4652
"tailwindcss": "^3.4.3",
4753
"typescript": "^5.2.2",

0 commit comments

Comments
 (0)