Skip to content

feat(lang-ts): support lang="ts" in <style> and <custom> blocks #208

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(tests): remove .only from new tests
  • Loading branch information
Tahul committed Sep 14, 2023
commit 74eda59ee1c1bcd09cfd3fe4c6b51e0095060df4
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ describe("Basic tests", () => {
})

describe("About fixtures/lang-ts", () => {
it.only('Should parse lang="ts" blocks as script blocks', () => {
it('Should parse lang="ts" blocks as script blocks', () => {
const ast = parse(
[
"<template><div></div></template>",
Expand All @@ -551,7 +551,7 @@ describe("Basic tests", () => {
)
const body = ast
})
it.only('Should treat lang="ts" blocks as script tags', async () => {
it('Should treat lang="ts" blocks as script tags', async () => {
const cli = new ESLint({
cwd: FIXTURE_DIR,
overrideConfig: {
Expand Down