massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-python / schemas / conda-environment.json
diff --git a/.config/coc/extensions/node_modules/coc-python/schemas/conda-environment.json b/.config/coc/extensions/node_modules/coc-python/schemas/conda-environment.json
deleted file mode 100644 (file)
index 86ea602..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-{
-    "title": "conda environment file",
-    "description": "Support for conda's enviroment.yml files (e.g. `conda env export > environment.yml`)",
-    "id": "https://raw.githubusercontent.com/Microsoft/vscode-python/master/schemas/conda-environment.json",
-    "$schema": "http://json-schema.org/draft-04/schema#",
-    "definitions": {
-        "channel": {
-            "type": "string"
-        },
-        "package": {
-            "type": "string"
-        },
-        "path": {
-            "type": "string"
-        }
-    },
-    "properties": {
-        "name": {
-            "type": "string"
-        },
-        "channels": {
-            "type": "array",
-            "items": {
-                "$ref": "#/definitions/channel"
-            }
-        },
-        "dependencies": {
-            "type": "array",
-            "items": {
-                "anyOf": [
-                    {
-                        "$ref": "#/definitions/package"
-                    },
-                    {
-                        "type": "object",
-                        "properties": {
-                            "pip": {
-                                "type": "array",
-                                "items": {
-                                    "$ref": "#/definitions/package"
-                                }
-                            }
-                        },
-                        "required": [ "pip" ]
-                    }
-                ]
-            }
-        },
-        "prefix": {
-            "$ref": "#/definitions/path"
-        }
-    }
-}