29 lines
682 B
TypeScript
29 lines
682 B
TypeScript
// Copyright 2018-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
import { readFileSync } from 'fs';
|
|
|
|
import { orderBy } from 'lodash';
|
|
|
|
import { ExceptionType } from './types';
|
|
|
|
export const ENCODING = 'utf8';
|
|
|
|
export function loadJSON<T>(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<ExceptionType>
|
|
): Array<ExceptionType> {
|
|
return orderBy(exceptions, ['path', 'lineNumber', 'rule']);
|
|
}
|