mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-28 14:23:56 +00:00
chore: update frontend build for v1.1.83 [skip ci]
This commit is contained in:
15
web/admin-spa/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js
generated
vendored
Normal file
15
web/admin-spa/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { containsNewline } from './util-contains-newline.js';
|
||||
|
||||
function flowIndentCheck(indent, fc, onError) {
|
||||
if (fc?.type === 'flow-collection') {
|
||||
const end = fc.end[0];
|
||||
if (end.indent === indent &&
|
||||
(end.source === ']' || end.source === '}') &&
|
||||
containsNewline(fc)) {
|
||||
const msg = 'Flow end indicator should be more indented than parent';
|
||||
onError(end, 'BAD_INDENT', msg, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export { flowIndentCheck };
|
||||
Reference in New Issue
Block a user