Skip to content

Commit

Permalink
updates to readme and eslint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
apulverizer committed Feb 9, 2020
1 parent 7fbf5bb commit 0112517
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15,931 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
browser: true
},
rules: {
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }]
"no-unused-vars": ["off", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }]
},
overrides: [
// node files
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v9.11.2
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
# klask-app

This README outlines the details of collaborating on this Ember application.
A short introduction of this app could easily go here.
A progressive web app to keep score of Klask games. It uses [ember](https://emberjs.com/) and [firebase](https://firebase.google.com/).

<table>
<tr><td>
<img src="images/standings.png" width=300/>
</td><td>
<img src="images/profile.png" width=300/>
</tr>
</table>

See it live [here](https://portland-leaderboard.web.app)

## Prerequisites

You will need the following things properly installed on your computer.

* [Git](https://git-scm.com/)
* [Node.js](https://nodejs.org/) (with npm)
* [Node.js](https://nodejs.org/) (with npm/yarn)
* [Ember CLI](https://ember-cli.com/)
* [Google Chrome](https://google.com/chrome/)

## Installation

* `git clone <repository-url>` this repository
* `cd klask-app`
* `npm install`
* `yarn install`

## Running / Development

Expand Down
1 change: 1 addition & 0 deletions app/components/standings/score-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default Component.extend({
})
newGame.set('gid', newGame.get('id'));
newGame.save().catch(function(e){
// eslint-disable-next-line no-console
console.log(e)
})
},
Expand Down
1 change: 1 addition & 0 deletions app/controllers/arenas.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export default Controller.extend({
// transistion to standings
this.transitionToRoute('standings');
}).catch((e) => {
// eslint-disable-next-line no-console
console.log(e);
});
}
Expand Down
Binary file added images/profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/standings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0112517

Please sign in to comment.