Skip to content

Latest commit

History

History
51 lines (35 loc) 路 1.09 KB

CONTRIBUTING.md

File metadata and controls

51 lines (35 loc) 路 1.09 KB

GitHub Issues is for reporting bugs, discussing features and general feedback in CalendarKit. Be sure to check our documentation and past issues before opening any new issues.

Alternatively, you may ask questions related to this library on StackOverflow, tag CalendarKit.

If you are posting about a crash in your application, a stack trace is helpful, but additional context, in the form of code and explanation, is necessary to be of any use.

Code Style

This project has the following code style:

  • Indent with spaces (not tabs)
  • Tab width: 2 spaces
  • Indent with: 2 spaces
  • No file headers
  • Curly braces open on the same line as the code

Examples

Incorrect:

//
//  File.swift
//  CalendarKit
//
//  Created by user on 29/09/2017.
//

import Foundation

class aClass
{
    func aFunction()
    {
        
    }
}

Correct:

import Foundation

class aClass {
  func aFunction() {
    
  }
}