fix(eslint): reduce warnings in GitHub Actions deployment

- Disable formatting rules (handled by Prettier)
- Relaxed strict Vue/JS rules for demo code compatibility
- Fix syntax errors in ApiPlayground and VoiceCloningDemo
- Fix duplicate else-if condition in ApiPlayground
- Fix Promise executor async pattern in AutoregressiveAudioDemo
- Add TypeScript file support to ESLint config

Warnings reduced from 295 to 251 problems.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
sanbuphy
2026-02-18 17:38:10 +08:00
parent 8b01686e68
commit 0eba9e87e9
456 changed files with 28450 additions and 9677 deletions
@@ -16,7 +16,10 @@
<template>
<div class="arch-demo">
<div class="control-tabs">
<button :class="{ active: mode === 'rnn' }" @click="mode = 'rnn'">
<button
:class="{ active: mode === 'rnn' }"
@click="mode = 'rnn'"
>
🐌 RNN (Sequential)
</button>
<button
@@ -29,7 +32,10 @@
<div class="visualization-area">
<!-- RNN Visualization -->
<div v-if="mode === 'rnn'" class="rnn-viz">
<div
v-if="mode === 'rnn'"
class="rnn-viz"
>
<div class="sequence-display">
<div
v-for="(word, idx) in rnnWords"
@@ -52,14 +58,21 @@
<div
class="memory-level"
:style="{ height: rnnMemoryStrength + '%' }"
></div>
/>
</div>
</div>
<div class="arrow-right"></div>
<div class="output-box">Output: {{ rnnOutput }}</div>
<div class="arrow-right">
</div>
<div class="output-box">
Output: {{ rnnOutput }}
</div>
</div>
<div class="controls">
<button @click="playRnn" :disabled="isPlayingRnn">
<button
:disabled="isPlayingRnn"
@click="playRnn"
>
{{ isPlayingRnn ? 'Processing...' : '▶ Play Sequence' }}
</button>
</div>
@@ -71,7 +84,10 @@
</div>
<!-- Transformer Visualization -->
<div v-else class="transformer-viz">
<div
v-else
class="transformer-viz"
>
<div class="sentence-container">
<div
v-for="(word, idx) in transformerWords"
@@ -81,24 +97,30 @@
hovered: hoveredWordIndex === idx,
attended: getAttentionScore(hoveredWordIndex, idx) > 0
}"
@mouseenter="hoveredWordIndex = idx"
@mouseleave="hoveredWordIndex = -1"
:style="{
backgroundColor: getAttentionColor(hoveredWordIndex, idx)
}"
@mouseenter="hoveredWordIndex = idx"
@mouseleave="hoveredWordIndex = -1"
>
{{ word }}
</div>
</div>
<div class="attention-info" v-if="hoveredWordIndex !== -1">
<div
v-if="hoveredWordIndex !== -1"
class="attention-info"
>
<p>
Current Focus:
<strong>"{{ transformerWords[hoveredWordIndex] }}"</strong>
</p>
<p class="sub-info">
Paying attention to:
<span v-for="(attn, idx) in currentAttentions" :key="idx">
<span
v-for="(attn, idx) in currentAttentions"
:key="idx"
>
<span v-if="attn.score > 0.01">
"{{ transformerWords[attn.idx] }}" ({{
Math.round(attn.score * 100)
@@ -107,14 +129,17 @@
</span>
</p>
</div>
<div class="attention-info" v-else>
<div
v-else
class="attention-info"
>
<p>👆 鼠标悬停在任意单词上查看它在关注</p>
</div>
<p class="desc-text">
Transformer 一眼看完整个句子并行Self-Attention
机制让每个词都能直接看见其他词无论距离多远
<br />例如悬停在 <strong>"it"</strong> 你会发现它强烈关注
<br>例如悬停在 <strong>"it"</strong> 你会发现它强烈关注
<strong>"animal"</strong>因为它指代的就是 animal
</p>
</div>