Skip to content

Commit

Permalink
chore: update eslint config and fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryoverload committed Jan 20, 2025
1 parent fc67436 commit 2af914b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@pretendonetwork/eslint-config": "^0.0.1",
"@pretendonetwork/eslint-config": "^0.0.3",
"@stylistic/eslint-plugin": "^2.13.0",
"bmp-js": "^0.1.0",
"ejs": "^3.1.10",
Expand Down
1 change: 0 additions & 1 deletion src/services/juxt-web/routes/console/notifications.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const express = require('express');
const moment = require('moment');
const database = require('../../../../database');
const config = require('../../../../../config.json');
const util = require('../../../../util');
const router = express.Router();

Expand Down
2 changes: 1 addition & 1 deletion src/services/juxt-web/routes/console/posts.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ router.get('/:post_id', async function (req, res) {
community: community,
communityMap: communityMap,
postPNID,
pnid: req.user,
pnid: req.user
});
});

Expand Down
1 change: 0 additions & 1 deletion src/services/juxt-web/routes/console/show.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const express = require('express');
const database = require('../../../../database');
const util = require('../../../../util');
const config = require('../../../../../config.json');
const router = express.Router();

router.get('/', async function (req, res) {
Expand Down

0 comments on commit 2af914b

Please sign in to comment.