Closed juliangruber closed 5 years ago
I updated standard, ran npx standard --fix and manually fixed two errors. The most notable change is that standard now requires the use of const over let if the variable won't be reassigned.
npx standard --fix
const
let
I updated standard, ran
npx standard --fix
and manually fixed two errors. The most notable change is that standard now requires the use ofconst
overlet
if the variable won't be reassigned.