// tslint:disable no-console import { readFileSync } from 'fs'; import { orderBy } from 'lodash'; import { ExceptionType } from './types'; export const ENCODING = 'utf8'; export function loadJSON(target: string) { 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) { return orderBy(exceptions, ['path', 'lineNumber', 'rule']); }