Skip to content

Commit

Permalink
TypeScript Rollout Tier 19 - docs wrap-up (#410)
Browse files Browse the repository at this point in the history
* chore(gha): restore linting

The `verify.yml` workflow starts linting again.

* fix(docs): missing lang="ts" attributes

Adds missing `lang="ts"` attributes to some example components.
  • Loading branch information
kikuomax authored Jan 17, 2025
1 parent 4684bb5 commit dc3826f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ jobs:
- run: npm ci --prefer-offline

- name: Lint
# skips until the TypeScript migration is complete
run: exit 0
# run: npm -w @ntohq/buefy-next run lint
run: npm -w @ntohq/buefy-next run lint
id: lint
continue-on-error: true

Expand Down Expand Up @@ -72,9 +70,7 @@ jobs:
- run: npm ci --prefer-offline

- name: Lint docs
# skips until the TypeScript migration is complete
run: exit 0
# run: npm -w docs run lint
run: npm -w docs run lint
id: lint
continue-on-error: true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</section>
</template>

<script>
<script lang="ts">
import { defineComponent } from 'vue'
import { BCheckbox, BIcon } from '@ntohq/buefy-next'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</section>
</template>

<script>
<script lang="ts">
import { defineComponent } from 'vue'
import { BField, BTag } from '@ntohq/buefy-next'
Expand Down

0 comments on commit dc3826f

Please sign in to comment.