mirror of
https://github.com/garraflavatra/yeslint.git
synced 2024-11-21 23:49:05 +01:00
10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
'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 )}]
|
|
}
|