We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0acef97 commit e083686Copy full SHA for e083686
tests/themes.check.js
@@ -1,10 +1,10 @@
1
const themes = require('../themes.json')
2
3
-let allBugs = []
+const allBugs = []
4
5
themes.forEach((entry, index) => {
6
7
- let currentBugs = []
+ const currentBugs = []
8
9
const keys = Object.keys(entry)
10
const objectKeys = keys[0] !== 'title' ||
@@ -17,7 +17,7 @@ themes.forEach((entry, index) => {
17
typeof entry[keys[1]] !== 'string' ||
18
typeof entry[keys[2]] !== 'string' ||
19
typeof entry[keys[3]] !== 'string' ||
20
- typeof entry[keys[4]] !== 'object' !!
+ typeof entry[keys[4]] !== 'object' ||
21
typeof entry[keys[5]] !== 'string'
22
23
if (typeof entry !== 'object') currentBugs.push('This theme is not an object.')
0 commit comments