mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 16:57:46 +00:00
13 lines
220 B
TypeScript
13 lines
220 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as Diff from 'diff';
|
|
|
|
export const DEFAULT_DIFF_OPTIONS: Diff.PatchOptions = {
|
|
context: 3,
|
|
ignoreWhitespace: true,
|
|
};
|