add linting to server folder

This commit is contained in:
janis
2023-10-05 13:57:35 +02:00
parent 5c5462186f
commit dbb1e7a977
7 changed files with 11 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ const fs = require( 'fs' );
// const ph = require( './paymentHandler.js' );
// const paymentHandler = new ph();
module.exports = ( app, settings ) => {
module.exports = ( app ) => {
app.get( '/payments/canceled', ( req, res ) => {
res.sendFile( path.join( __dirname + '/../../ui/en/payments/canceled.html' ) );
} );

View File

@@ -1,3 +1,4 @@
/* eslint-disable no-undef */
const { createApp } = Vue;
createApp( {

View File

@@ -1,3 +1,4 @@
/* eslint-disable no-undef */
const { createApp } = Vue;
createApp( {