mirror of
https://github.com/garraflavatra/yeslint.git
synced 2024-11-21 23:49:05 +01:00
21 lines
326 B
JavaScript
21 lines
326 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);
|
|
},
|
|
],
|
|
|
|
arrays: [
|
|
1,
|
|
2,
|
|
3,
|
|
],
|
|
};
|