Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
module.exports = {
env: {
browser: true,
es2020: true,
commonjs: true,
es2021: true,
},
extends: [
'airbnb-base',
],
parserOptions: {
ecmaVersion: 11,
ecmaVersion: 13,
},
rules: {
// Don't enforce control flow closing curly brace needs to be
// on same line as next control flow opening statement
'brace-style': 'off',
// Disable linebreak style to prevent ESLint errors on Windows line endings
// https://eslint.org/docs/rules/linebreak-style
'linebreak-style': 'off',
// Allow console for students to debug
'no-console': 'off',
// Allow function param reassign for array or object elements or properties
'no-param-reassign': ['error', { props: false }],
},
};
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Rocket Academy Coding Bootcamp: Match Game

Card matching game.
https://bootcamp.rocketacademy.co/1-1-frontend-basics/1.poce-post-class-exercises/1.poce.3-match-game
Binary file added assets/match-game-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<body>
<h1 id="header">SWE101! 🚀</h1>
<img src="assets/match-game-logo.png" width="200px" height="auto" />
<!-- Import program logic -->
<script src="script.js"></script>
</body>
Expand Down
Loading