Files
Desktop/ts/util/lint/sort_exceptions.node.ts
T
2026-03-30 11:54:59 -07:00

13 lines
404 B
TypeScript

// Copyright 2018 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { join } from 'node:path';
import type { ExceptionType } from './types.std.ts';
import { loadJSON, writeExceptions } from './util.node.ts';
const exceptionsPath = join(__dirname, 'exceptions.json');
const exceptions: Array<ExceptionType> = loadJSON(exceptionsPath);
writeExceptions(exceptionsPath, exceptions);