yeslint/example/wrong.js

12 lines
299 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!'},
2023-08-07 17:50:06 +02:00
functions: [( env )=> console.log(env.password),function ({password}) { console.log( password )}],
arrays: [1,2,3]
2023-07-27 21:56:03 +02:00
}