Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use const not let
  • Loading branch information
OldStarchy committed Jan 17, 2019
1 parent 6caabc5 commit eeebce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension.js
Expand Up @@ -81,7 +81,7 @@ class PHPCSFixer {
]
}

let files = [];
const files = [];
for (const file of configFiles) {
if (path.isAbsolute(file)) {
files.push(file)
Expand Down

0 comments on commit eeebce4

Please sign in to comment.