租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
523 B

3 months ago
  1. // Standard YAML's JSON schema.
  2. // http://www.yaml.org/spec/1.2/spec.html#id2803231
  3. //
  4. // NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
  5. // So, this schema is not such strict as defined in the YAML specification.
  6. // It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc.
  7. 'use strict';
  8. module.exports = require('./failsafe').extend({
  9. implicit: [
  10. require('../type/null'),
  11. require('../type/bool'),
  12. require('../type/int'),
  13. require('../type/float')
  14. ]
  15. });