40a39158578dcc8c204e03b6d9ff7dd92cfe77bf2f2ebc612023f8cf5feff64f8a9b2000dac2b6ef658d82c737f742a39a20cc1d7d5b0c510f13e21037d367 362 B

123456789101112131415161718
  1. // Standard YAML's Core schema.
  2. // http://www.yaml.org/spec/1.2/spec.html#id2804923
  3. //
  4. // NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
  5. // So, Core schema has no distinctions from JSON schema is JS-YAML.
  6. 'use strict';
  7. var Schema = require('../schema');
  8. module.exports = new Schema({
  9. include: [
  10. require('./json')
  11. ]
  12. });