Skip to content

Commit

Permalink
fix: Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Dec 18, 2024
1 parent b429e9e commit 7928ae1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ export const startDevServer = async (
) {
void serveStaticFile(res, parsedUrl, staticBaseDirRelativePath);
} else if (!isNextReady) {
void nextReadyPromise.then(() =>
nextHandleRequest?.(req, res, parsedUrl),
void nextReadyPromise.then(
() => nextHandleRequest?.(req, res, parsedUrl),
);
} else {
void nextHandleRequest?.(req, res, parsedUrl);
Expand Down
8 changes: 4 additions & 4 deletions packages/tailwind/src/utils/css/resolve-all-css-variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import {
rule as createRule,
decl as createDeclaration,
AtRule,
} from 'postcss';
import { removeIfEmptyRecursively } from './remove-if-empty-recursively';
} from "postcss";
import { removeIfEmptyRecursively } from "./remove-if-empty-recursively";

const doNodesMatch = (first: Node | undefined, second: Node | undefined) => {
if (first instanceof Rule && second instanceof Rule) {
return (
first.selector === second.selector ||
second.selector.includes('*') ||
second.selector.includes(':root')
second.selector.includes("*") ||
second.selector.includes(":root")
);
}

Expand Down

0 comments on commit 7928ae1

Please sign in to comment.