Skip to content

Commit

Permalink
fix: add empty line at end of generated .prettierrc.js
Browse files Browse the repository at this point in the history
Signed-off-by: Naseem <naseem@transit.app>
  • Loading branch information
Naseem committed Jun 3, 2020
1 parent 6424eba commit 81b4cc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/init.ts
Expand Up @@ -245,7 +245,8 @@ async function generateTsConfig(options: Options): Promise<void> {
async function generatePrettierConfig(options: Options): Promise<void> {
const style = `module.exports = {
...require('gts/.prettierrc.json')
}`;
}
`;
return generateConfigFile(options, './.prettierrc.js', style);
}

Expand Down

0 comments on commit 81b4cc9

Please sign in to comment.