diff --git a/plugins/cost-insights/src/api/ExampleCostInsightsClient.ts b/plugins/cost-insights/src/api/ExampleCostInsightsClient.ts
index 70695beb25..8cc66e626f 100644
--- a/plugins/cost-insights/src/api/ExampleCostInsightsClient.ts
+++ b/plugins/cost-insights/src/api/ExampleCostInsightsClient.ts
@@ -33,10 +33,7 @@ import {
Trendline,
UnlabeledDataflowData,
} from '../types';
-import {
- ProjectGrowthAlert,
- UnlabeledDataflowAlert
-} from '../utils/alerts';
+import { ProjectGrowthAlert, UnlabeledDataflowAlert } from '../utils/alerts';
import {
DEFAULT_DATE_FORMAT,
exclusiveEndDateOf,
diff --git a/plugins/cost-insights/src/components/CostGrowth/CostGrowth.test.tsx b/plugins/cost-insights/src/components/CostGrowth/CostGrowth.test.tsx
index 046394ca7a..9c76d6d998 100644
--- a/plugins/cost-insights/src/components/CostGrowth/CostGrowth.test.tsx
+++ b/plugins/cost-insights/src/components/CostGrowth/CostGrowth.test.tsx
@@ -37,10 +37,10 @@ const MockContext = ({
currency: Currency;
engineerCost: number;
}>) => (
-
- {children}
-
- );
+
+ {children}
+
+);
describe.each`
engineerCost | ratio | amount | expected
diff --git a/plugins/cost-insights/src/components/ProjectGrowthAlertCard/ProjectGrowthAlertCard.tsx b/plugins/cost-insights/src/components/ProjectGrowthAlertCard/ProjectGrowthAlertCard.tsx
index 18f7fa151d..4311bcc1bf 100644
--- a/plugins/cost-insights/src/components/ProjectGrowthAlertCard/ProjectGrowthAlertCard.tsx
+++ b/plugins/cost-insights/src/components/ProjectGrowthAlertCard/ProjectGrowthAlertCard.tsx
@@ -31,8 +31,9 @@ export const ProjectGrowthAlertCard = ({ alert }: ProjectGrowthAlertProps) => {
const [costStart, costEnd] = alert.aggregation;
const subheader = `
- ${alert.products.length} ${pluralOf(alert.products.length, 'product')}${alert.products.length > 1 ? ', sorted by cost' : ''
- }`;
+ ${alert.products.length} ${pluralOf(alert.products.length, 'product')}${
+ alert.products.length > 1 ? ', sorted by cost' : ''
+ }`;
const previousName = moment(alert.periodStart, 'YYYY-[Q]Q').format(
'[Q]Q YYYY',
);
diff --git a/plugins/cost-insights/src/utils/alerts.tsx b/plugins/cost-insights/src/utils/alerts.tsx
index fcb41f1e3b..fbb148f38a 100644
--- a/plugins/cost-insights/src/utils/alerts.tsx
+++ b/plugins/cost-insights/src/utils/alerts.tsx
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import React from 'react';
import { Alert, UnlabeledDataflowData, ProjectGrowthData } from '../types';
import { UnlabeledDataflowAlertCard } from '../components/UnlabeledDataflowAlertCard';
diff --git a/plugins/cost-insights/src/utils/formatters.ts b/plugins/cost-insights/src/utils/formatters.ts
index fc563bf836..bf8e26ef5f 100644
--- a/plugins/cost-insights/src/utils/formatters.ts
+++ b/plugins/cost-insights/src/utils/formatters.ts
@@ -16,10 +16,7 @@
import moment from 'moment';
import { Duration } from '../types';
-import {
- inclusiveEndDateOf,
- inclusiveStartDateOf,
-} from '../utils/duration';
+import { inclusiveEndDateOf, inclusiveStartDateOf } from '../utils/duration';
import { pluralOf } from '../utils/grammar';
export type Period = {