mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
00b8e79318
Update `vertical_whitespace` rule to allow configuration of the number of consecutive empty lines before a violation using `max_empty_lines`. The default value is still 1 line.
31 lines
931 B
Swift
31 lines
931 B
Swift
//
|
|
// LinuxMain.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by JP Simard on 12/11/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
@testable import SwiftLintFrameworkTests
|
|
import XCTest
|
|
|
|
XCTMain([
|
|
testCase(AttributesRuleTests.allTests),
|
|
testCase(ColonRuleTests.allTests),
|
|
testCase(ConfigurationTests.allTests),
|
|
testCase(CustomRulesTests.allTests),
|
|
testCase(ExtendedNSStringTests.allTests),
|
|
testCase(FileHeaderRuleTests.allTests),
|
|
testCase(FunctionBodyLengthRuleTests.allTests),
|
|
testCase(IntegrationTests.allTests),
|
|
testCase(ReporterTests.allTests),
|
|
testCase(RuleConfigurationsTests.allTests),
|
|
testCase(RuleTests.allTests),
|
|
testCase(RulesTests.allTests),
|
|
testCase(SourceKitCrashTests.allTests),
|
|
testCase(TrailingCommaRuleTests.allTests),
|
|
testCase(VerticalWhitespaceRuleTests.allTests),
|
|
testCase(YamlSwiftLintTests.allTests),
|
|
testCase(YamlParserTests.allTests)
|
|
])
|