Skip to content

Commit

Permalink
Renamed files to kebab-case (#66)
Browse files Browse the repository at this point in the history
* Renamed files to kebab-case

* Rename App.tsx to app.tsx
  • Loading branch information
AlexKempen authored Dec 2, 2023
1 parent d1bfdf6 commit f9fac66
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/client/App.tsx → src/client/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export function App(): JSX.Element {
<Body />
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/server/api/api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Command } from "../command/command";
import { PieceManager } from "../robot/piecemanager";
import { PieceManager } from "../robot/piece-manager";
import { CommandExecutor } from "../command/executor";
import { Chess } from "chess.js";

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
SequentialCommandGroup,
Reversible,
} from "./command";
import { RotateToStartCommand } from "./movecommand";
import { RotateToStartCommand } from "./move-command";

type ReversibleRobotCommand = RobotCommand & Reversible<ReversibleRobotCommand>;

Expand Down
2 changes: 1 addition & 1 deletion src/server/robot/__tests__/robot.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DEGREE } from "../../utils/units";
import { Robot } from "../robot";
import { RobotSocket } from "../robotsocket";
import { RobotSocket } from "../robot-socket";
import WebSocket from "ws";

jest.mock("ws");
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/server/robot/robot.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Position, ZERO_POSITION } from "./pair";
import { RobotSocket } from "./robotsocket";
import { RobotSocket } from "./robot-socket";
import { FULL_ROTATION, clampHeading } from "../utils/units";

/**
Expand Down

0 comments on commit f9fac66

Please sign in to comment.