Skip to content

Commit

Permalink
refactor(index): remove extra braces (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Apr 9, 2024
1 parent 2e7b59a commit 0fabeae
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import type { SemanticReleaseConfig } from './types/index.d.ts';
*
* @returns Semantic Release config.
*/
const defineConfig = (config: SemanticReleaseConfig): SemanticReleaseConfig => {
return config;
};
const defineConfig = (config: SemanticReleaseConfig): SemanticReleaseConfig =>
config;

export { defineConfig };

0 comments on commit 0fabeae

Please sign in to comment.