Skip to content
This repository was archived by the owner on Dec 25, 2022. It is now read-only.

Commit a2c5261

Browse files
author
Andreas Faust
committed
Switch to NextJS and rewrite everything in Typescript
1 parent 870e89b commit a2c5261

Some content is hidden

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

99 files changed

+3216
-16034
lines changed

.babelrc

-11
This file was deleted.

.editorconfig

-9
This file was deleted.

.eslintrc.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
extends: "react-app",
3+
rules: {
4+
quotes: ["error", "single"],
5+
semi: ["error", "never"],
6+
indent: ["error", 2, {
7+
SwitchCase: 1
8+
}],
9+
"no-multiple-empty-lines": ["error"],
10+
"jsx-a11y/anchor-is-valid": 0
11+
}
12+
}

.eslintrc.json

-21
This file was deleted.

.gitignore

+21-64
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,29 @@
1-
deploy.sh
2-
__local-assets/
1+
_local-assets
2+
/.vscode
3+
sled.code-workspace
34

4-
# Logs
5-
logs
6-
*.log
7-
npm-debug.log*
8-
yarn-debug.log*
9-
yarn-error.log*
10-
11-
# Runtime data
12-
pids
13-
*.pid
14-
*.seed
15-
*.pid.lock
16-
17-
# Directory for instrumented libs generated by jscoverage/JSCover
18-
lib-cov
19-
20-
# Coverage directory used by tools like istanbul
21-
coverage
22-
23-
# nyc test coverage
24-
.nyc_output
25-
26-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27-
.grunt
28-
29-
# Bower dependency directory (https://bower.io/)
30-
bower_components
31-
32-
# node-waf configuration
33-
.lock-wscript
5+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
346

35-
# Compiled binary addons (http://nodejs.org/api/addons.html)
36-
build/Release
37-
38-
# Dependency directories
39-
node_modules/
40-
jspm_packages/
41-
42-
# Typescript v1 declaration files
43-
typings/
44-
45-
# Optional npm cache directory
46-
.npm
47-
48-
# Optional eslint cache
49-
.eslintcache
50-
51-
# Optional REPL history
52-
.node_repl_history
7+
# dependencies
8+
/node_modules
9+
/.pnp
10+
.pnp.js
5311

54-
# Output of 'npm pack'
55-
*.tgz
12+
# testing
13+
/coverage
5614

57-
# dotenv environment variables file
58-
.env
15+
# next.js
16+
/.next/
17+
/out/
5918

60-
# gatsby files
61-
.cache/
62-
public
19+
# production
20+
/build
6321

64-
# Mac files
22+
# misc
6523
.DS_Store
24+
.env*
6625

67-
# Yarn
68-
yarn-error.log
69-
.pnp/
70-
.pnp.js
71-
# Yarn Integrity file
72-
.yarn-integrity
26+
# debug
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*

.travis.yml

-4
This file was deleted.

0 commit comments

Comments
 (0)