Here is some normal text. A paragraph, even!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"2gua.rainbow-brackets", | |
"aaron-bond.better-comments", | |
"codezombiech.gitignore", | |
"coenraads.bracket-pair-colorizer-2", | |
"dbaeumer.vscode-eslint", | |
"esbenp.prettier-vscode", | |
"formulahendry.auto-rename-tag", | |
"kisstkondoros.vscode-gutter-preview", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"better-comments.highlightPlainText": true, | |
"css.validate": false, | |
"editor.accessibilitySupport": "off", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"editor.fontFamily": "'Inconsolata', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": [ | |
"stylelint-config-standard" | |
], | |
"plugins": ["stylelint-prettier"], | |
"rules": { | |
"prettier/prettier": true | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
.cache | |
dist | |
node_modules | |
*.sw* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"devDependencies": { | |
"eslint": "^6.6.0", | |
"eslint-config-prettier": "^6.5.0", | |
"eslint-plugin-prettier": "^3.1.1", | |
"prettier": "1.19.1", | |
"stylelint": "^11.1.1", | |
"stylelint-config-prettier": "^6.0.0", | |
"stylelint-config-recommended": "^3.0.0", | |
"stylelint-prettier": "^1.1.1" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<div class="container--students"> | |
${generateStudentsHTML(st.students)} | |
</div> | |
<form action="#"> | |
<div class="container--form"> | |
<div> | |
<label for="student-pic">Enter a URL for the Student's Pic</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Developer's Notes: | |
1. We add these CSS selectors 'roughly' in the order that we encounter them on the page. | |
2. We maintain 'neat and orderly' code, being mindful of any/all 'red marks.' | |
*/ | |
body { | |
color: #333; | |
font-family: "Roboto", sans-serif; | |
font-size: 10px; | |
font-weight: 400; | |
line-height: 1.45; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": [ | |
"stylelint-config-recommended", | |
"stylelint-prettier/recommended" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Build prototype of methods | |
const proto = { | |
hello() { | |
return `Hello, my name is ${this.name}`; | |
} | |
}; | |
// Merge a new proto object along with the properties and merge them. | |
const greeter = name => | |
Object.assign( |
OlderNewer