Skip to content

Commit

Permalink
fix: next/babel missing errors in vscode (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
design1online authored Oct 13, 2023
1 parent 0b0ec92 commit e5f025e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"extends": ["next/core-web-vitals"],
"overrides": [
{
"files": ["*.js"],
"parser": "espree",
"parserOptions": {
"ecmaVersion": 2020
}
}
],
"env": {
"browser": true,
"node": true,
Expand Down
1 change: 0 additions & 1 deletion client/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -1695,7 +1695,6 @@ export default class Game {
getEntityAt(x, y, ignoreSelf) {
log.debug('Game - getEntityAt()', x, y, ignoreSelf);

console.log('getEntityAt', this.entities.grids.renderingGrid);
const entities = this.entities.grids.renderingGrid[y][x];

if (_.size(entities) > 0) {
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ <h1>All files</h1>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2023-10-13T01:15:33.030Z
at 2023-10-13T01:55:22.850Z
</div>
<script src="prettify.js"></script>
<script>
Expand Down

0 comments on commit e5f025e

Please sign in to comment.