Files
Desktop/ts/util/lint/sort_exceptions.node.ts
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -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.js';
import { loadJSON, writeExceptions } from './util.node.js';
const exceptionsPath = join(__dirname, 'exceptions.json');
const exceptions: Array<ExceptionType> = loadJSON(exceptionsPath);
writeExceptions(exceptionsPath, exceptions);