mirror of
https://github.com/garraflavatra/yeslint.git
synced 2024-11-22 10:47:44 +01:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
properties: 'This is not ugly, the whitespace is perfect, and the quotes are single',
|
||
|
|
||
|
object: { spacing: 'required!' },
|
||
|
|
||
|
functions: [
|
||
|
env => console.log(env.password),
|
||
|
function({ password }) {
|
||
|
console.log(password);
|
||
|
},
|
||
|
],
|
||
|
};
|