My dotfiles
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

144 righe
3.6 KiB

  1. {
  2. "title": ".condarc",
  3. "description": "The conda configuration file; https://conda.io/docs/user-guide/configuration/use-condarc.html",
  4. "id": "https://raw.githubusercontent.com/Microsoft/vscode-python/master/schemas/condarc.json",
  5. "$schema": "http://json-schema.org/draft-04/schema#",
  6. "definitions": {
  7. "channel": {
  8. "type": "string"
  9. },
  10. "feature": {
  11. "type": "string"
  12. },
  13. "package": {
  14. "type": "string"
  15. },
  16. "path": {
  17. "type": "string"
  18. }
  19. },
  20. "properties": {
  21. "channels": {
  22. "type": "array",
  23. "items": {
  24. "$ref": "#/definitions/channel"
  25. }
  26. },
  27. "allow_other_channels": {
  28. "type": "boolean"
  29. },
  30. "default_channels": {
  31. "type": "array",
  32. "items": {
  33. "$ref": "#/definitions/channel"
  34. }
  35. },
  36. "auto_update_conda": {
  37. "type": "boolean"
  38. },
  39. "always_yes": {
  40. "type": "boolean"
  41. },
  42. "show_channel_urls": {
  43. "type": "boolean"
  44. },
  45. "changeps1": {
  46. "type": "boolean"
  47. },
  48. "add_pip_as_python_dependency": {
  49. "type": "boolean"
  50. },
  51. "use_pip": {
  52. "type": "boolean"
  53. },
  54. "proxy_servers": {
  55. "type": "object",
  56. "additionalProperties": {
  57. "type": "string",
  58. "format": "hostname"
  59. }
  60. },
  61. "ssl_verify": {
  62. "type": "boolean"
  63. },
  64. "offline": {
  65. "type": "boolean"
  66. },
  67. "allow_softlinks": {
  68. "type": "boolean"
  69. },
  70. "channel_alias": {
  71. "type": "string",
  72. "format": "uri"
  73. },
  74. "create_default_packages": {
  75. "type": "array",
  76. "items": {
  77. "$ref": "#/definitions/package"
  78. }
  79. },
  80. "track_features": {
  81. "type": "array",
  82. "items": {
  83. "$ref": "#/definitions/feature"
  84. }
  85. },
  86. "update_dependencies": {
  87. "type": "boolean"
  88. },
  89. "disallow": {
  90. "type": "array",
  91. "items": {
  92. "$ref": "#/definitions/package"
  93. }
  94. },
  95. "add_anaconda_token": {
  96. "type": "boolean"
  97. },
  98. "envs_dirs": {
  99. "type": "array",
  100. "items": {
  101. "$ref": "#/definitions/path"
  102. }
  103. },
  104. "anaconda_upload": {
  105. "type": "boolean"
  106. },
  107. "conda-build": {
  108. "type": "object",
  109. "properties": {
  110. "root-dir": {
  111. "$ref": "#/definitions/path"
  112. },
  113. "quiet": {
  114. "type": "boolean"
  115. },
  116. "filename_hashing": {
  117. "type": "boolean"
  118. },
  119. "no_verify": {
  120. "type": "boolean"
  121. },
  122. "set_build_id": {
  123. "type": "boolean"
  124. },
  125. "skip_existing": {
  126. "type": "boolean"
  127. },
  128. "include_recipe": {
  129. "type": "boolean"
  130. },
  131. "activate": {
  132. "type": "boolean"
  133. },
  134. "pypirc": {
  135. "$ref": "#/definitions/path"
  136. },
  137. "pypi_repository": {
  138. "type": "string"
  139. }
  140. }
  141. }
  142. }
  143. }