Skip to content

Commit 5ecb4ed

Browse files
author
Nonovium
committed
Added linting, prettier and othe dev dependancies to root package
1 parent 2238fe5 commit 5ecb4ed

File tree

6 files changed

+8992
-7
lines changed

6 files changed

+8992
-7
lines changed

.eslintrc.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:react/recommended",
10+
"plugin:prettier/recommended"
11+
],
12+
"globals": {
13+
"Atomics": "readonly",
14+
"SharedArrayBuffer": "readonly"
15+
},
16+
"parserOptions": {
17+
"ecmaFeatures": {
18+
"jsx": true
19+
},
20+
"ecmaVersion": 11,
21+
"sourceType": "module"
22+
},
23+
"plugins": ["react", "prettier"],
24+
"rules": {
25+
"prettier/prettier": "error",
26+
"react/prop-types": "off"
27+
}
28+
}

.prettierrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"trailingComma": "es5",
3+
"semi": false,
4+
"singleQuote": true
5+
}

.vscode/settings.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"git.ignoreLimitWarning": true,
3+
"editor.formatOnSave": true,
4+
"prettier.prettierPath": "node_modules/prettier/index.js",
5+
"editor.codeActionsOnSave": {
6+
"source.fixAll": true
7+
},
8+
"editor.defaultFormatter": "esbenp.prettier-vscode",
9+
"peacock.color": "#1857a4",
10+
"workbench.colorCustomizations": {
11+
"activityBar.activeBackground": "#1f6fd0",
12+
"activityBar.activeBorder": "#ee90bb",
13+
"activityBar.background": "#1f6fd0",
14+
"activityBar.foreground": "#e7e7e7",
15+
"activityBar.inactiveForeground": "#e7e7e799",
16+
"activityBarBadge.background": "#ee90bb",
17+
"activityBarBadge.foreground": "#15202b",
18+
"statusBar.background": "#1857a4",
19+
"statusBar.foreground": "#e7e7e7",
20+
"statusBarItem.hoverBackground": "#1f6fd0",
21+
"titleBar.activeBackground": "#1857a4",
22+
"titleBar.activeForeground": "#e7e7e7",
23+
"titleBar.inactiveBackground": "#1857a499",
24+
"titleBar.inactiveForeground": "#e7e7e799"
25+
}
26+
}

api/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)