mirror of
https://github.com/garraflavatra/yeslint.git
synced 2024-11-28 08:26:23 +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);
|
|
},
|
|
],
|
|
};
|