Skip to content

Commit

Permalink
fix(core): format files after successful migration
Browse files Browse the repository at this point in the history
Format the files so they remain human readable after migration
  • Loading branch information
Ben Callaghan committed May 20, 2021
1 parent c6993b9 commit c92814a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Tree, updateProjectConfiguration } from '@nrwl/devkit';
import { formatFiles, Tree, updateProjectConfiguration } from '@nrwl/devkit';
import { getNxDotnetProjects } from '@nx-dotnet/utils';
import { GetLintExecutorConfiguration } from '../../models';

Expand All @@ -8,4 +8,5 @@ export default function update(host: Tree) {
project.targets.lint ??= GetLintExecutorConfiguration();
updateProjectConfiguration(host, name, project);
}
formatFiles(host);
}

0 comments on commit c92814a

Please sign in to comment.