Skip to content

Instantly share code, notes, and snippets.

View kwontaewan's full-sized avatar
🥦
Trippy Life

Gunter kwontaewan

🥦
Trippy Life
View GitHub Profile
🌞 Morning 79 commits ███▋░░░░░░░░░░░░░░░░░ 17.4%
🌆 Daytime 188 commits ████████▋░░░░░░░░░░░░ 41.4%
🌃 Evening 184 commits ████████▌░░░░░░░░░░░░ 40.5%
🌙 Night 3 commits ▏░░░░░░░░░░░░░░░░░░░░ 0.7%
import UIKit
import RxSwift
import RxCocoa
let requiredUserNameLength = 5
let requiredPasswordLength = 5
let limitUserNameLength = 20
class ValidationViewController: UIViewController {
@kwontaewan
kwontaewan / .swiftlint.yml
Created October 19, 2018 05:15
Swift Lint all disabled rules
disabled_rules: # rule identifiers to exclude from running
- colon
- comma
- control_statement
- file_length
- force_cast
- force_try
- function_body_length
- leading_whitespace
- line_length
@kwontaewan
kwontaewan / .swiftlint.yml
Created October 19, 2018 05:13
Swift Lint Setting
disabled_rules: # rule identifiers to exclude from running
# - colon
# - comma
# - control_statement
# - file_length
# - force_cast
- force_try
# - function_body_length
# - leading_whitespace
# - line_length
#oclint xcode include cocoapod project
OCLINT_HOME=/usr/local/Cellar/oclint/0.13
export PATH=$OCLINT_HOME/bin:$PATH
hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1