mirror of
https://github.com/garraflavatra/yeslint.git
synced 2024-11-21 23:49:05 +01:00
16 lines
365 B
Svelte
16 lines
365 B
Svelte
|
<script>
|
||
|
|
||
|
export let property // unused
|
||
|
|
||
|
const anotherObject ={
|
||
|
"properties" : `This is ugly, the whitespace is too much, and the backticks are unnecessary`,
|
||
|
|
||
|
object:{spacing:'required!'},
|
||
|
|
||
|
functions: [( env )=> console.log(env.password),function ({password}) { console.log( password )}]
|
||
|
};
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<div class="{anotherObject.className}"></div>
|