1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:59:30 +00:00

Lint cleanup with new rules

This commit is contained in:
2022-03-03 09:14:09 +00:00
parent 80291efc6d
commit c9e826d016
20 changed files with 104 additions and 57 deletions

View File

@@ -4,13 +4,15 @@ const express = require('express');
const router = express.Router();
router.get('/reports', (req, res, next) => {
/*
/* eslint-disable multiline-comment-style */
/*
return res.render('reports', {
title: 'Stratos - Reports',
current: 'Reports',
name: req.session.fullName
});
*/
*/
/* eslint-enable multiline-comment-style */
next();
});