// Copyright 2018-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only /* eslint-disable no-console */ import { readFileSync } from 'fs'; import { omit, orderBy } from 'lodash'; import { ExceptionType } from './types'; export const ENCODING = 'utf8'; export function loadJSON(target: string): T { try { const contents = readFileSync(target, ENCODING); return JSON.parse(contents); } catch (error) { console.log(`Error loading JSON from ${target}: ${error.stack}`); throw error; } } export function sortExceptions( exceptions: Array ): Array { return orderBy(exceptions, [ 'path', 'rule', 'reasonCategory', 'updated', 'reasonDetail', ]).map(removeLegacyAttributes); } // This is here in case any open changesets still touch `lineNumber`. We should remove // this after 2021-06-01 to be conservative. function removeLegacyAttributes( exception: Readonly ): ExceptionType { return omit(exception, ['lineNumber']); }