Skip to content

Commit 14fadba

Browse files
fix ci and exec prettier
1 parent 5a604a6 commit 14fadba

9 files changed

+78
-479
lines changed

.all-contributorsrc

+2-8
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"projectOwner": "laststance",
44
"repoType": "github",
55
"repoHost": "https://github.com/laststance/vite-rtk-query",
6-
"files": [
7-
"README.md"
8-
],
6+
"files": ["README.md"],
97
"imageSize": 100,
108
"commit": true,
119
"commitConvention": "none",
@@ -15,11 +13,7 @@
1513
"name": "ryota-murakami",
1614
"avatar_url": "https://avatars1.githubusercontent.com/u/5501268?s=400&u=7bf6b1580b95930980af2588ef0057f3e9ec1ff8&v=4",
1715
"profile": "http://ryota-murakami.github.io/",
18-
"contributions": [
19-
"code",
20-
"doc",
21-
"test"
22-
]
16+
"contributions": ["code", "doc", "test"]
2317
}
2418
],
2519
"contributorsPerLine": 7

.eslintrc.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ module.exports = {
66
'react-hooks/rules-of-hooks': 'error',
77
},
88
settings: {},
9-
}
9+
}

.github/dependabot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
3+
- package-ecosystem: 'npm'
44
# Files stored in `app` directory
5-
directory: "/"
5+
directory: '/'
66
schedule:
7-
interval: "daily"
7+
interval: 'daily'

.prettierignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
.git
2+
.idea
3+
.vscode
24
node_modules
35
.eslintignore
46
.gitignore
5-
LICENSE
7+
dist
8+
package-lock.json
9+
yarn.lock
10+
*.log

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href='/favicon.svg' />
5+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Vite App</title>
88
</head>

0 commit comments

Comments
 (0)