Skip to content

Commit

Permalink
style: 💄 fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Dec 18, 2023
1 parent be4e8ef commit ba8fc81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export const cluster = {

export const standalone = {
host: '127.0.0.1',
// port: 6379,
port: 9999,
port: 6379,
// port: 9999,
};
2 changes: 2 additions & 0 deletions src/server/RedisServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import {RespStreamingDecoder} from 'json-joy/es2020/json-pack/resp/RespStreaming
import {AvlMap} from 'json-joy/es2020/util/trees/avl/AvlMap';
import {cmpUint8Array} from '../util/buf';

/* tslint:disable no-console */

export class RedisTcpServer {
private server?: net.Server;
protected readonly encoder: RespEncoder;
Expand Down

0 comments on commit ba8fc81

Please sign in to comment.