Skip to content

Latest commit

History

History
56 lines (37 loc) 路 1.33 KB

CONTRIBUTING.md

File metadata and controls

56 lines (37 loc) 路 1.33 KB

CalendarKit actively accepts contributions in a form of pull requests (code changes) and issues (bug reports and feature requests). If you wish to submit a pull request, feel free to raise an issue first to discuss the implementation details and your approach.

Need Help?

If you have a programming question about how to use CalendarKit in your application, Create a new GitHub Issue with the question tag.

Check out the Sample App for reference.

Create a new Issue from template to report a bug or request a new feature.

Code Style

When submitting a pull request, adhering to the code style is recommended, although not compulsory.

This project has the following code style (Xcode Default):

  • Indent with spaces (not tabs)
  • Tab width: 4 spaces
  • Indent with: 4 spaces
  • 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() {
    
  }
}