Skip to content

Commit

Permalink
move files next to the rule
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedBaset committed Sep 27, 2024
1 parent 0fee186 commit c3fd0e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { describe, expect, it } from "vitest";
import { extractTokensFromNode } from "./ast.js";
import type { Context } from "../rules/no-phyisical-properties/rule.js";
import type { Context } from "./rule.js";
import type { AST_NODE_TYPES, TSESTree } from "@typescript-eslint/utils";

describe("ast", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
NO_PHYSICAL_CLASSESS,
type Context,
type MessageId,
} from "../rules/no-phyisical-properties/rule.js";
} from "./rule.js";

const unimplemented = new Set<string>();

Expand Down
4 changes: 2 additions & 2 deletions src/rules/no-phyisical-properties/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import type {
RuleContext,
RuleModule,
} from "@typescript-eslint/utils/ts-eslint";
import { type Token, extractTokensFromNode } from "../../utils/ast.js";
import { parseForPhysicalClasses } from "../../utils/tailwind.js";
import { type Token, extractTokensFromNode } from "./ast.js";
import { parseForPhysicalClasses } from "./tailwind.js";

// const cache = new Map<
// /** invalid */ string,
Expand Down
File renamed without changes.

0 comments on commit c3fd0e8

Please sign in to comment.