yeslint/example/correct.svelte

18 lines
358 B
Svelte
Raw Permalink Normal View History

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