1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 16:19:26 +00:00

Added forgotten strict mode declarations

This commit is contained in:
2022-02-09 15:26:49 +00:00
parent ae8d302d34
commit c7b3cd131f
8 changed files with 18 additions and 0 deletions

View File

@@ -89,6 +89,10 @@
],
"brace-style": [
"error"
],
"strict": [
"error",
"global"
]
}
}

View File

@@ -1,3 +1,5 @@
'use strict';
const del = require('del');
const gulp = require('gulp');
const postcss = require('gulp-postcss');

View File

@@ -1,3 +1,5 @@
'use strict';
const helpers = {};
helpers.eq = (arg1, arg2, options) =>

View File

@@ -1,3 +1,5 @@
'use strict';
const express = require('express');
const router = express.Router();

View File

@@ -1,3 +1,5 @@
'use strict';
const express = require('express');
const router = express.Router();

View File

@@ -1,3 +1,5 @@
'use strict';
const express = require('express');
const router = express.Router();

View File

@@ -1,3 +1,5 @@
'use strict';
const express = require('express');
const router = express.Router();

View File

@@ -1,3 +1,5 @@
'use strict';
const express = require('express');
const router = express.Router();