Skip to content

Commit b89a5a5

Browse files
committed
✨ Revive blog
1 parent 4cc716b commit b89a5a5

120 files changed

Lines changed: 2032 additions & 18936 deletions

File tree

Some content is hidden

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

.eslintrc.js

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/SUGGEST_A_TRANSLATION.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/lint-workflow.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.gitignore

Lines changed: 86 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,115 +1,179 @@
1-
# IntelliJ
2-
.idea
3-
4-
.DS_Store
1+
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
52

6-
# Gatsby
7-
.cache
8-
public
3+
var/*
4+
!var/.gitkeep
95

106
# Logs
7+
118
logs
12-
*.log
13-
npm-debug.log*
9+
_.log
10+
npm-debug.log_
1411
yarn-debug.log*
1512
yarn-error.log*
1613
lerna-debug.log*
14+
.pnpm-debug.log*
1715

1816
# Diagnostic reports (https://nodejs.org/api/report.html)
19-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
2019

2120
# Runtime data
21+
2222
pids
23-
*.pid
24-
*.seed
25-
*.pid.lock
23+
_.pid
24+
_.seed
25+
\*.pid.lock
2626

2727
# Directory for instrumented libs generated by jscoverage/JSCover
28+
2829
lib-cov
2930

3031
# Coverage directory used by tools like istanbul
32+
3133
coverage
32-
*.lcov
34+
\*.lcov
3335

3436
# nyc test coverage
37+
3538
.nyc_output
3639

3740
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
41+
3842
.grunt
3943

4044
# Bower dependency directory (https://bower.io/)
45+
4146
bower_components
4247

4348
# node-waf configuration
49+
4450
.lock-wscript
4551

4652
# Compiled binary addons (https://nodejs.org/api/addons.html)
53+
4754
build/Release
4855

4956
# Dependency directories
57+
5058
node_modules/
5159
jspm_packages/
5260

53-
# TypeScript v1 declaration files
54-
typings/
61+
# Snowpack dependency directory (https://snowpack.dev/)
62+
63+
web_modules/
5564

5665
# TypeScript cache
57-
*.tsbuildinfo
66+
67+
\*.tsbuildinfo
5868

5969
# Optional npm cache directory
70+
6071
.npm
6172

6273
# Optional eslint cache
74+
6375
.eslintcache
6476

77+
# Optional stylelint cache
78+
79+
.stylelintcache
80+
6581
# Microbundle cache
82+
6683
.rpt2_cache/
6784
.rts2_cache_cjs/
6885
.rts2_cache_es/
6986
.rts2_cache_umd/
7087

7188
# Optional REPL history
89+
7290
.node_repl_history
7391

7492
# Output of 'npm pack'
75-
*.tgz
93+
94+
\*.tgz
7695

7796
# Yarn Integrity file
97+
7898
.yarn-integrity
7999

80-
# dotenv environment variables file
100+
# dotenv environment variable files
101+
81102
.env
82-
.env.test
103+
.env.development.local
104+
.env.test.local
105+
.env.production.local
106+
.env.local
83107

84108
# parcel-bundler cache (https://parceljs.org/)
109+
85110
.cache
111+
.parcel-cache
86112

87113
# Next.js build output
114+
88115
.next
116+
out
89117

90118
# Nuxt.js build / generate output
119+
91120
.nuxt
92121
dist
93122

94123
# Gatsby files
124+
95125
.cache/
96-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
126+
127+
# Comment in the public line in if your project uses Gatsby and not Next.js
128+
97129
# https://nextjs.org/blog/next-9-1#public-directory-support
130+
98131
# public
99132

100133
# vuepress build output
134+
101135
.vuepress/dist
102136

137+
# vuepress v2.x temp and cache directory
138+
139+
.temp
140+
.cache
141+
142+
# Docusaurus cache and generated files
143+
144+
.docusaurus
145+
103146
# Serverless directories
147+
104148
.serverless/
105149

106150
# FuseBox cache
151+
107152
.fusebox/
108153

109154
# DynamoDB Local files
155+
110156
.dynamodb/
111157

112158
# TernJS port file
159+
113160
.tern-port
114161

115-
lighthouse.html
162+
# Stores VSCode versions used for testing VSCode extensions
163+
164+
.vscode-test
165+
166+
# yarn v2
167+
168+
.yarn/cache
169+
.yarn/unplugged
170+
.yarn/build-state.yml
171+
.yarn/install-state.gz
172+
.pnp.\*
173+
174+
# IntelliJ based IDEs
175+
.idea
176+
177+
# Finder (MacOS) folder config
178+
.DS_Store
179+

.prettierrc

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
{
2-
"semi": false,
3-
"arrowParens": "always",
4-
"singleQuote": true,
5-
"bracketSpacing": true,
6-
"endOfLine": "lf",
7-
"htmlWhitespaceSensitivity": "strict",
8-
"jsxBracketSameLine": false,
9-
"jsxSingleQuote": true,
10-
"printWidth": 100,
11-
"proseWrap": "preserve",
12-
"quoteProps": "as-needed",
13-
"tabWidth": 2,
14-
"trailingComma": "all",
15-
"useTabs": true
16-
}
2+
"arrowParens": "avoid",
3+
"semi": false,
4+
"useTabs": true,
5+
"printWidth": 100
6+
}

0 commit comments

Comments
 (0)