Skip to content

Commit 93e8d1c

Browse files
committed
Added wordmark instead of a plain link
- used wordmark in place of the plaintext link - use class instead of className for styling - updated packages
1 parent ec48824 commit 93e8d1c

File tree

8 files changed

+10580
-10608
lines changed

8 files changed

+10580
-10608
lines changed

.eslintrc

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
2+
"root": true,
23
"env": {
34
"browser": true,
45
"es6": true,
56
"node": true
67
},
7-
"extends": ["eslint:recommended"],
8+
"extends": [
9+
"eslint:recommended"
10+
],
811
"globals": {
912
"Atomics": "readonly",
1013
"SharedArrayBuffer": "readonly"
@@ -25,14 +28,30 @@
2528
"SwitchCase": 1
2629
}
2730
],
28-
"linebreak-style": ["error", "unix"],
29-
"quotes": ["error", "single"],
30-
"comma-dangle": ["error", "always-multiline"],
31-
"semi": ["error", "always"]
31+
"linebreak-style": [
32+
"error",
33+
"unix"
34+
],
35+
"quotes": [
36+
"error",
37+
"single"
38+
],
39+
"comma-dangle": [
40+
"error",
41+
"always-multiline"
42+
],
43+
"semi": [
44+
"error",
45+
"always"
46+
]
3247
},
48+
"ignorePatterns": ["dist/*"],
3349
"overrides": [
3450
{
35-
"files": ["**/*.ts", "**/*.tsx"],
51+
"files": [
52+
"*.ts",
53+
"*.tsx"
54+
],
3655
"parser": "@typescript-eslint/parser",
3756
"extends": [
3857
"eslint:recommended",
@@ -50,7 +69,9 @@
5069
"plugin:prettier/recommended",
5170
"prettier/@typescript-eslint"
5271
],
53-
"plugins": ["local"],
72+
"plugins": [
73+
"local"
74+
],
5475
"rules": {
5576
"@typescript-eslint/explicit-function-return-type": [
5677
"warn",
@@ -70,7 +91,10 @@
7091
},
7192
"settings": {
7293
"import/parsers": {
73-
"@typescript-eslint/parser": [".ts", ".tsx"]
94+
"@typescript-eslint/parser": [
95+
".ts",
96+
".tsx"
97+
]
7498
}
7599
},
76100
"env": {

0 commit comments

Comments
 (0)