yeslint/example/wrong.js

10 lines
279 B
JavaScript
Raw Normal View History

2023-07-27 21:56:03 +02:00
'why not use strict?';
module.exports = {
"properties" : `This is ugly, the whitespace is too much, and the backticks are unnecessary`,
object:{spacing:'required!'},
functions: [( env )=> console.log(env.password),function ({password}) { console.log( password )}]
}