Skip to content

Commit c8faf68

Browse files
authored
[backport] fix: disable unknownatrules lint rule entirely (#83059) (#83060)
Biome is close to releasing their fix for Tailwind parsing, but it'll be released in the next minor version. We want to make sure that linting the template doesn't show any problems arising from Tailwind at-rules in the meantime. (See #82974 and #82826)
1 parent cc68ced commit c8faf68

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/create-next-app/templates/app-tw-empty/js/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/app-tw-empty/ts/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/app-tw/js/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/app-tw/ts/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/default-tw-empty/js/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/default-tw-empty/ts/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/default-tw/js/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

packages/create-next-app/templates/default-tw/ts/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"rules": {
2020
"recommended": true,
2121
"suspicious": {
22-
"noUnknownAtRules": "warn"
22+
"noUnknownAtRules": "off"
2323
}
2424
},
2525
"domains": {

0 commit comments

Comments
 (0)