Gitignore Template

Gitignore Template

APIs.ioEngineeringPlatform

Properties

Name Type Description
name string
source string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-gitignore-template-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/gitignore-template",
  "title": "Gitignore Template",
  "description": "Gitignore Template",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "C"
    },
    "source": {
      "type": "string",
      "example": "# Object files\n*.o\n\n# Libraries\n*.lib\n*.a\n\n# Shared objects (inc. Windows DLLs)\n*.dll\n*.so\n*.so.*\n*.dylib\n\n# Executables\n*.exe\n*.out\n*.app\n"
    }
  },
  "required": [
    "name",
    "source"
  ]
}