yeslint/example/correct.svelte
2023-07-27 21:56:03 +02:00

18 lines
358 B
Svelte

<script>
const anotherObject = {
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);
},
],
};
</script>
<div class={anotherObject.className} />