Skip to content

Commit

Permalink
fixed linting problem
Browse files Browse the repository at this point in the history
  • Loading branch information
nichlaes committed Oct 28, 2024
1 parent 1fd158e commit 74a9e1a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions servers/lib/src/files/git/git-files.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ import { CONFIG_MODE } from '../../enums/config-mode.enum.js';

@Injectable()
export default class GitFilesService implements IFilesService {
private readonly dataPath: string;

constructor() {
this.dataPath = ''; //Should be set from config service
}
// eslint-disable-next-line no-useless-constructor, no-empty-function
constructor() {}
getMode(): CONFIG_MODE {
return CONFIG_MODE.GIT;
}
Expand Down

0 comments on commit 74a9e1a

Please sign in to comment.