fix: Resolve formatting issues

This commit is contained in:
Florian Zia 2024-03-13 19:36:02 +01:00
Родитель c342b5929d
Коммит feb1902407
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 1 добавлений и 43 удалений

Просмотреть файл

@ -3,6 +3,7 @@
# We can do such a reformatting later, or format them if/when we convert them to TypeScript:
src/utils/**/*.js
src/db/**/*.js
src/emails/**/*.js
# TODO NEXT.JS MIGRATION:
# These files are remnants of our Express app:

Просмотреть файл

@ -1,43 +0,0 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
export const testBreaches = [
{
Title: 'Test',
Name: 'Test',
Domain: 'test.com',
BreachDate: '2012-12-21',
AddedDate: '2013-01-01',
DataClasses: [],
IsSpamList: false,
IsFabricated: false,
IsVerified: true,
IsRetired: false
},
{
Title: 'Test2',
Name: 'Test2',
Domain: 'test2.com',
BreachDate: '2016-11-08',
AddedDate: '2017-01-01',
DataClasses: [],
IsSpamList: false,
IsFabricated: false,
IsVerified: true,
IsRetired: false
},
{
Title: 'Sensitive',
Name: 'Sensitive',
Domain: 'sensitive.com',
BreachDate: '2017-11-08',
AddedDate: '2018-11-08',
IsSensitive: true,
DataClasses: [],
IsSpamList: false,
IsFabricated: false,
IsVerified: true,
IsRetired: false
}
]