Skip to content

Commit 92e0740

Browse files
Merge pull request #2 from poprunner88/1-setting-up-for-vscode
1 setting up for vscode
2 parents b57bd45 + cd3c416 commit 92e0740

File tree

4 files changed

+49
-1
lines changed

4 files changed

+49
-1
lines changed

.prettierignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Ignore artifacts
2+
.DS_Store
3+
.env
4+
.gitignore
5+
.prettierignore
6+
build
7+
dist
8+
frontend
9+
node_modules
10+
11+
# Ignore files
12+
*.gif
13+
*.ico
14+
*.jpeg
15+
*.jpg
16+
*.lock
17+
*.png
18+
*.svg
19+
*.txt
20+
*.woff
21+
*.woff2

.prettierrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"arrowParens": "always",
4+
"printWidth": 60,
5+
"trailingComma": "all"
6+
}

.vscode/settings.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"typescript.updateImportsOnFileMove.enabled": "never",
3+
"typescript.preferences.importModuleSpecifier": "non-relative",
4+
"workbench.colorCustomizations": {
5+
"titleBar.activeForeground": "#000",
6+
"titleBar.inactiveForeground": "#000000CC",
7+
"titleBar.activeBackground": "#ffc600",
8+
"titleBar.inactiveBackground": "#ffc600CC"
9+
},
10+
"editor.defaultFormatter": "esbenp.prettier-vscode",
11+
"editor.formatOnSave": true,
12+
"[javascript]": {
13+
"editor.defaultFormatter": "esbenp.prettier-vscode",
14+
"editor.formatOnSave": true
15+
},
16+
"[json]": {
17+
"editor.defaultFormatter": "esbenp.prettier-vscode",
18+
"editor.formatOnSave": true
19+
},
20+
"editor.tabSize": 2
21+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
JavaScript Assessments
1+
# JavaScript Assessments

0 commit comments

Comments
 (0)