Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsage committed Apr 24, 2023
1 parent a462e62 commit c759e96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/modCheckLib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ class modFileChecker {
return false
}

const allFileList = globSync('**', { cwd : this.fileDetail.fullPath, follow : true, mark : true, withFileTypes : true, stat : true })
const allFileList = globSync('**', { cwd : this.fileDetail.fullPath, follow : true, mark : true, stat : true, withFileTypes : true })

for ( const checkFile of allFileList ) {
this.#checkInternalFile(
Expand Down Expand Up @@ -1106,7 +1106,6 @@ class modFileChecker {
}

#checkInternalFile(suffix, fileName, size) {
console.log(`name: ${fileName} -- suffix : ${suffix}`)
if ( fileName.includes(' ') ) {
this.fileDetail.spaceFiles.push(fileName)
this.#failFlags.space_in_file = true
Expand Down

0 comments on commit c759e96

Please sign in to comment.