yeslint/example/correct.svelte

18 lines
358 B
Svelte
Raw Normal View History

2023-07-27 21:56:03 +02:00
<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} />