update eslint config and add placeholders

This commit is contained in:
Jo 2023-11-24 00:17:25 +01:00
parent f40e6d51a5
commit 48dfd71278
6 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ module.exports = {
"camelcase": "error", "camelcase": "error",
// Unused Variables // Unused Variables
"no-unused-vars": "warn", "no-unused-vars": "ignore",
// Arrow Functions // Arrow Functions
"prefer-arrow-callback": "error", "prefer-arrow-callback": "error",

0
config/placeholder Normal file
View file

0
controller/placeholder Normal file
View file

0
model/placeholder Normal file
View file

0
public/placeholder Normal file
View file

View file

@ -2,7 +2,7 @@ const express = require("express");
const router = express.Router(); const router = express.Router();
router.get("/", (req, res) => { router.get("/", (req, res) => {
// API stuff goes here
}); });
module.exports = router; module.exports = router;