Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP #7

Draft
wants to merge 17 commits into
base: master
Choose a base branch
from
Draft
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
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

13 changes: 13 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "standard",
"rules": {
"no-console": "warn",
"quotes": "off",
"semi": "off",
"comma-dangle": "off",
"space-before-function-paren": "off"
},
"globals": {
"Phaser": "readonly"
}
}
6 changes: 0 additions & 6 deletions .eslintrc.js

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Lint
on: [push, pull_request]

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: npm install
- run: npm run lint
14 changes: 9 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
.fusebox
static/build
static/build/*.js
static/build/*.map
node_modules
.DS_*
*.log
logs
**/*.backup.*
**/*.back.*

.cache
dist/
node_modules/
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 80,
"singleQuote": false,
"trailingComma": "all",
"arrowParens": "always"
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Balaj Marius <balajmarius@gmail.com> (https://balajmarius.com)
Copyright (c) 2019 Balaj Marius <balajmarius@gmail.com> (https://balajmarius.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 6 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,17 @@
# COMMIT 4 🎮
> digital LCD mini-game

![commit4](https://i.imgur.com/tIruBpP.png)

# ✨ Winner of ["Best theme interpretation"](https://github.com/blog/2483-game-off-2017-winners)

### Lint 🎩
> digital LCD mini-game

```bash
npm run lint
```
![Octocat](https://i.imgur.com/07AorFP.png)

### Start 🏁
## Develop

```bash
npm run start
yarn dev
```

### Build 📦
## Build

```bash
npm run build
yarn build
```
45 changes: 0 additions & 45 deletions fuse.js

This file was deleted.

Loading