diff --git a/Package.resolved b/Package.resolved index 45e01ed..476dadf 100644 --- a/Package.resolved +++ b/Package.resolved @@ -15,7 +15,7 @@ "repositoryURL": "https://github.com/yanagiba/swift-ast", "state": { "branch": null, - "revision": "af3edc8e3301dfc846efc1375949391dbbcd6ed1", + "revision": "875d28b94ec6f063da9fb6fa2353f3b06ecdc538", "version": null } } diff --git a/Package.swift b/Package.swift index 1c8895f..34c5b78 100644 --- a/Package.swift +++ b/Package.swift @@ -43,7 +43,7 @@ let package = Package( dependencies: [ .package( url: "https://github.com/yanagiba/swift-ast", - .revision("af3edc8e3301dfc846efc1375949391dbbcd6ed1") + .revision("875d28b94ec6f063da9fb6fa2353f3b06ecdc538") ), .package( url: "https://github.com/yanagiba/bocho", diff --git a/Sources/Lint/AST+Format.swift b/Sources/Lint/AST+Format.swift index 69d7241..58c2649 100644 --- a/Sources/Lint/AST+Format.swift +++ b/Sources/Lint/AST+Format.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/ASTContext.swift b/Sources/Lint/ASTContext.swift index 643596b..f8e9b40 100644 --- a/Sources/Lint/ASTContext.swift +++ b/Sources/Lint/ASTContext.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/ASTVisitorRule.swift b/Sources/Lint/ASTVisitorRule.swift index 9f43556..c0eed04 100644 --- a/Sources/Lint/ASTVisitorRule.swift +++ b/Sources/Lint/ASTVisitorRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2015-2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Constant.swift b/Sources/Lint/Constant.swift index 5c0bded..6b1f877 100644 --- a/Sources/Lint/Constant.swift +++ b/Sources/Lint/Constant.swift @@ -1,5 +1,5 @@ /* - Copyright 2015 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Correction.swift b/Sources/Lint/Correction.swift index 53f3b54..6306c6c 100644 --- a/Sources/Lint/Correction.swift +++ b/Sources/Lint/Correction.swift @@ -1,5 +1,5 @@ /* - Copyright 2015 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Driver.swift b/Sources/Lint/Driver.swift index 7e3c6f2..116d763 100644 --- a/Sources/Lint/Driver.swift +++ b/Sources/Lint/Driver.swift @@ -88,12 +88,11 @@ public class Driver { IssuePool.shared.clearIssues() let diagnosticConsumer = SilentDiagnosticConsumer() - let toolingOption = ToolActionOption(sequenceExpressionFoldingEnabled: true) let tooling = ToolAction() let result = tooling.run( sourceFiles: sourceFiles, diagnosticConsumer: diagnosticConsumer, - option: toolingOption) + options: [.foldSequenceExpression]) guard result.exitCode == ToolActionResult.success else { return .failedInParsingFile diff --git a/Sources/Lint/Issue.swift b/Sources/Lint/Issue.swift index 9d705e0..51efa92 100644 --- a/Sources/Lint/Issue.swift +++ b/Sources/Lint/Issue.swift @@ -1,5 +1,5 @@ /* - Copyright 2015-2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/IssuePool.swift b/Sources/Lint/IssuePool.swift index 3784a89..1565f1d 100644 --- a/Sources/Lint/IssuePool.swift +++ b/Sources/Lint/IssuePool.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter.swift b/Sources/Lint/Reporter.swift index a2f915f..f7bffd9 100644 --- a/Sources/Lint/Reporter.swift +++ b/Sources/Lint/Reporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2015 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter/Date+Reporter.swift b/Sources/Lint/Reporter/Date+Reporter.swift index 0bf6bc0..ba29972 100644 --- a/Sources/Lint/Reporter/Date+Reporter.swift +++ b/Sources/Lint/Reporter/Date+Reporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter/HTMLReporter.swift b/Sources/Lint/Reporter/HTMLReporter.swift index 96d2e12..cb43bf5 100644 --- a/Sources/Lint/Reporter/HTMLReporter.swift +++ b/Sources/Lint/Reporter/HTMLReporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter/JSONReporter.swift b/Sources/Lint/Reporter/JSONReporter.swift index c419c92..f37beca 100644 --- a/Sources/Lint/Reporter/JSONReporter.swift +++ b/Sources/Lint/Reporter/JSONReporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter/PMDReporter.swift b/Sources/Lint/Reporter/PMDReporter.swift index 1fdad4b..7984ed7 100644 --- a/Sources/Lint/Reporter/PMDReporter.swift +++ b/Sources/Lint/Reporter/PMDReporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter/TextReporter.swift b/Sources/Lint/Reporter/TextReporter.swift index 3d23a3a..64ef35e 100644 --- a/Sources/Lint/Reporter/TextReporter.swift +++ b/Sources/Lint/Reporter/TextReporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2015-2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Reporter/XcodeReporter.swift b/Sources/Lint/Reporter/XcodeReporter.swift index e3d1abf..6a19fc8 100644 --- a/Sources/Lint/Reporter/XcodeReporter.swift +++ b/Sources/Lint/Reporter/XcodeReporter.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule+RuleBase.swift b/Sources/Lint/Rule+RuleBase.swift index 194731e..c14f03b 100644 --- a/Sources/Lint/Rule+RuleBase.swift +++ b/Sources/Lint/Rule+RuleBase.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule.swift b/Sources/Lint/Rule.swift index 6173919..ed8a4e4 100644 --- a/Sources/Lint/Rule.swift +++ b/Sources/Lint/Rule.swift @@ -1,5 +1,5 @@ /* - Copyright 2015 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/CollapsibleIfStatementsRule.swift b/Sources/Lint/Rule/CollapsibleIfStatementsRule.swift index 6b13692..1be71d8 100644 --- a/Sources/Lint/Rule/CollapsibleIfStatementsRule.swift +++ b/Sources/Lint/Rule/CollapsibleIfStatementsRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/ConstantConditionalOperatorConditionRule.swift b/Sources/Lint/Rule/ConstantConditionalOperatorConditionRule.swift index 6bf7a50..f581613 100644 --- a/Sources/Lint/Rule/ConstantConditionalOperatorConditionRule.swift +++ b/Sources/Lint/Rule/ConstantConditionalOperatorConditionRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/ConstantGuardStatementConditionRule.swift b/Sources/Lint/Rule/ConstantGuardStatementConditionRule.swift index 6c3cec7..0d9ea82 100644 --- a/Sources/Lint/Rule/ConstantGuardStatementConditionRule.swift +++ b/Sources/Lint/Rule/ConstantGuardStatementConditionRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/ConstantIfStatementConditionRule.swift b/Sources/Lint/Rule/ConstantIfStatementConditionRule.swift index 0c30f0e..dda9742 100644 --- a/Sources/Lint/Rule/ConstantIfStatementConditionRule.swift +++ b/Sources/Lint/Rule/ConstantIfStatementConditionRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/CyclomaticComplexityRule.swift b/Sources/Lint/Rule/CyclomaticComplexityRule.swift index fdcab23..99f85ef 100644 --- a/Sources/Lint/Rule/CyclomaticComplexityRule.swift +++ b/Sources/Lint/Rule/CyclomaticComplexityRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/DeadCodeRule.swift b/Sources/Lint/Rule/DeadCodeRule.swift index 3907fe8..242b2f8 100644 --- a/Sources/Lint/Rule/DeadCodeRule.swift +++ b/Sources/Lint/Rule/DeadCodeRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/DoubleNegativeRule.swift b/Sources/Lint/Rule/DoubleNegativeRule.swift index a748aac..07a7cb3 100644 --- a/Sources/Lint/Rule/DoubleNegativeRule.swift +++ b/Sources/Lint/Rule/DoubleNegativeRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/InvertedLogicRule.swift b/Sources/Lint/Rule/InvertedLogicRule.swift index c0cf0f6..9693000 100644 --- a/Sources/Lint/Rule/InvertedLogicRule.swift +++ b/Sources/Lint/Rule/InvertedLogicRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/LongLineRule.swift b/Sources/Lint/Rule/LongLineRule.swift index 82dced2..aab8148 100644 --- a/Sources/Lint/Rule/LongLineRule.swift +++ b/Sources/Lint/Rule/LongLineRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/MustCallSuperRule.swift b/Sources/Lint/Rule/MustCallSuperRule.swift index 0d168fd..a26579c 100644 --- a/Sources/Lint/Rule/MustCallSuperRule.swift +++ b/Sources/Lint/Rule/MustCallSuperRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/NCSSRule.swift b/Sources/Lint/Rule/NCSSRule.swift index 3433c1e..61ab9b4 100644 --- a/Sources/Lint/Rule/NCSSRule.swift +++ b/Sources/Lint/Rule/NCSSRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/NPathComplexityRule.swift b/Sources/Lint/Rule/NPathComplexityRule.swift index 027f0fe..63e81c9 100644 --- a/Sources/Lint/Rule/NPathComplexityRule.swift +++ b/Sources/Lint/Rule/NPathComplexityRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/NestedCodeBlockDepthRule.swift b/Sources/Lint/Rule/NestedCodeBlockDepthRule.swift index f2ff641..3e69609 100644 --- a/Sources/Lint/Rule/NestedCodeBlockDepthRule.swift +++ b/Sources/Lint/Rule/NestedCodeBlockDepthRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/NoForceCastRule.swift b/Sources/Lint/Rule/NoForceCastRule.swift index ad44b7c..b24b375 100644 --- a/Sources/Lint/Rule/NoForceCastRule.swift +++ b/Sources/Lint/Rule/NoForceCastRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2015 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/NoForcedTryRule.swift b/Sources/Lint/Rule/NoForcedTryRule.swift index 37343e6..1a7371d 100644 --- a/Sources/Lint/Rule/NoForcedTryRule.swift +++ b/Sources/Lint/Rule/NoForcedTryRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantBreakInSwitchCaseRule.swift b/Sources/Lint/Rule/RedundantBreakInSwitchCaseRule.swift index a95f697..a355b6b 100644 --- a/Sources/Lint/Rule/RedundantBreakInSwitchCaseRule.swift +++ b/Sources/Lint/Rule/RedundantBreakInSwitchCaseRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantConditionalOperatorRule.swift b/Sources/Lint/Rule/RedundantConditionalOperatorRule.swift index 3e2b402..d241ada 100644 --- a/Sources/Lint/Rule/RedundantConditionalOperatorRule.swift +++ b/Sources/Lint/Rule/RedundantConditionalOperatorRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantEnumCaseStringValueRule.swift b/Sources/Lint/Rule/RedundantEnumCaseStringValueRule.swift index 98360d8..10ca226 100644 --- a/Sources/Lint/Rule/RedundantEnumCaseStringValueRule.swift +++ b/Sources/Lint/Rule/RedundantEnumCaseStringValueRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantIfStatementRule.swift b/Sources/Lint/Rule/RedundantIfStatementRule.swift index e08c6a0..9299bf3 100644 --- a/Sources/Lint/Rule/RedundantIfStatementRule.swift +++ b/Sources/Lint/Rule/RedundantIfStatementRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantInitializationToNilRule.swift b/Sources/Lint/Rule/RedundantInitializationToNilRule.swift index b719c24..8cee04a 100644 --- a/Sources/Lint/Rule/RedundantInitializationToNilRule.swift +++ b/Sources/Lint/Rule/RedundantInitializationToNilRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantReturnVoidTypeRule.swift b/Sources/Lint/Rule/RedundantReturnVoidTypeRule.swift index 686587c..38eff40 100644 --- a/Sources/Lint/Rule/RedundantReturnVoidTypeRule.swift +++ b/Sources/Lint/Rule/RedundantReturnVoidTypeRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RedundantVariableDeclarationKeywordRule.swift b/Sources/Lint/Rule/RedundantVariableDeclarationKeywordRule.swift index 3df5651..996763d 100644 --- a/Sources/Lint/Rule/RedundantVariableDeclarationKeywordRule.swift +++ b/Sources/Lint/Rule/RedundantVariableDeclarationKeywordRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RemoveGetForReadOnlyComputedPropertyRule.swift b/Sources/Lint/Rule/RemoveGetForReadOnlyComputedPropertyRule.swift index 5b493c6..1e5a738 100644 --- a/Sources/Lint/Rule/RemoveGetForReadOnlyComputedPropertyRule.swift +++ b/Sources/Lint/Rule/RemoveGetForReadOnlyComputedPropertyRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/RuleBase+Util.swift b/Sources/Lint/Rule/RuleBase+Util.swift index 85f2ae3..34a34f9 100644 --- a/Sources/Lint/Rule/RuleBase+Util.swift +++ b/Sources/Lint/Rule/RuleBase+Util.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/Rule/TooManyParametersRule.swift b/Sources/Lint/Rule/TooManyParametersRule.swift index e38932e..5e99672 100644 --- a/Sources/Lint/Rule/TooManyParametersRule.swift +++ b/Sources/Lint/Rule/TooManyParametersRule.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/RuleBase+Configurations.swift b/Sources/Lint/RuleBase+Configurations.swift index dfa02b6..aa93831 100644 --- a/Sources/Lint/RuleBase+Configurations.swift +++ b/Sources/Lint/RuleBase+Configurations.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/RuleBase+Suppression.swift b/Sources/Lint/RuleBase+Suppression.swift index f5ce315..7329a98 100644 --- a/Sources/Lint/RuleBase+Suppression.swift +++ b/Sources/Lint/RuleBase+Suppression.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/RuleBase.swift b/Sources/Lint/RuleBase.swift index 2c13bd8..467249b 100644 --- a/Sources/Lint/RuleBase.swift +++ b/Sources/Lint/RuleBase.swift @@ -1,5 +1,5 @@ /* - Copyright 2015 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Lint/RuleSet.swift b/Sources/Lint/RuleSet.swift index 321d87b..cd77fee 100644 --- a/Sources/Lint/RuleSet.swift +++ b/Sources/Lint/RuleSet.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Metric/AST+Metric.swift b/Sources/Metric/AST+Metric.swift index 5beaf3f..9b7c19e 100644 --- a/Sources/Metric/AST+Metric.swift +++ b/Sources/Metric/AST+Metric.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Metric/CodeBlockDepth.swift b/Sources/Metric/CodeBlockDepth.swift index 787ef6c..26886f5 100644 --- a/Sources/Metric/CodeBlockDepth.swift +++ b/Sources/Metric/CodeBlockDepth.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Metric/CyclomaticComplexity.swift b/Sources/Metric/CyclomaticComplexity.swift index dd5abef..44e6b54 100644 --- a/Sources/Metric/CyclomaticComplexity.swift +++ b/Sources/Metric/CyclomaticComplexity.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Metric/NPathComplexity.swift b/Sources/Metric/NPathComplexity.swift index 91c6268..3e94815 100644 --- a/Sources/Metric/NPathComplexity.swift +++ b/Sources/Metric/NPathComplexity.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/Metric/NonCommentingSourceStatements.swift b/Sources/Metric/NonCommentingSourceStatements.swift index 20b11c5..6d883c9 100644 --- a/Sources/Metric/NonCommentingSourceStatements.swift +++ b/Sources/Metric/NonCommentingSourceStatements.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/swift-lint-docgen/main.swift b/Sources/swift-lint-docgen/main.swift index 5cba80d..992e67e 100644 --- a/Sources/swift-lint-docgen/main.swift +++ b/Sources/swift-lint-docgen/main.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/CrithagraTests/CrithagraTests.swift b/Tests/CrithagraTests/CrithagraTests.swift index 78bfab4..860f762 100644 --- a/Tests/CrithagraTests/CrithagraTests.swift +++ b/Tests/CrithagraTests/CrithagraTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2016 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2016 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/CrithagraTests/XCTestManifests.swift b/Tests/CrithagraTests/XCTestManifests.swift index 1fd32ba..6fa3543 100644 --- a/Tests/CrithagraTests/XCTestManifests.swift +++ b/Tests/CrithagraTests/XCTestManifests.swift @@ -1,5 +1,5 @@ /* - Copyright 2016 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2016 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LintTests/CorrectionTests.swift b/Tests/LintTests/CorrectionTests.swift index 1e86e0c..ec17bdb 100644 --- a/Tests/LintTests/CorrectionTests.swift +++ b/Tests/LintTests/CorrectionTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2015-2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LintTests/ReporterProtocolTests.swift b/Tests/LintTests/ReporterProtocolTests.swift index a6a939e..9e8c446 100644 --- a/Tests/LintTests/ReporterProtocolTests.swift +++ b/Tests/LintTests/ReporterProtocolTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LintTests/RuleBaseTests.swift b/Tests/LintTests/RuleBaseTests.swift index 66863f8..800e1a7 100644 --- a/Tests/LintTests/RuleBaseTests.swift +++ b/Tests/LintTests/RuleBaseTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LintTests/RuleProtocolTests.swift b/Tests/LintTests/RuleProtocolTests.swift index 63b8c29..23a47d7 100644 --- a/Tests/LintTests/RuleProtocolTests.swift +++ b/Tests/LintTests/RuleProtocolTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2015-2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LintTests/RuleSetTests.swift b/Tests/LintTests/RuleSetTests.swift index a449949..1fa5369 100644 --- a/Tests/LintTests/RuleSetTests.swift +++ b/Tests/LintTests/RuleSetTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LintTests/XCTestManifests.swift b/Tests/LintTests/XCTestManifests.swift index 15592c9..d37573e 100644 --- a/Tests/LintTests/XCTestManifests.swift +++ b/Tests/LintTests/XCTestManifests.swift @@ -1,5 +1,5 @@ /* - Copyright 2016 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2016 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift index 8cf9b15..dbbe6aa 100644 --- a/Tests/LinuxMain.swift +++ b/Tests/LinuxMain.swift @@ -1,5 +1,5 @@ /* - Copyright 2015-2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/MetricTests/CodeBlockDepthTests.swift b/Tests/MetricTests/CodeBlockDepthTests.swift index 488af17..f210763 100644 --- a/Tests/MetricTests/CodeBlockDepthTests.swift +++ b/Tests/MetricTests/CodeBlockDepthTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/MetricTests/CyclomaticComplexityTests.swift b/Tests/MetricTests/CyclomaticComplexityTests.swift index e0308cc..dce23fe 100644 --- a/Tests/MetricTests/CyclomaticComplexityTests.swift +++ b/Tests/MetricTests/CyclomaticComplexityTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/MetricTests/NPathComplexityTests.swift b/Tests/MetricTests/NPathComplexityTests.swift index 5b47ed7..68ab4fd 100644 --- a/Tests/MetricTests/NPathComplexityTests.swift +++ b/Tests/MetricTests/NPathComplexityTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/MetricTests/NonCommentingSourceStatementsTests.swift b/Tests/MetricTests/NonCommentingSourceStatementsTests.swift index b11d743..6634f16 100644 --- a/Tests/MetricTests/NonCommentingSourceStatementsTests.swift +++ b/Tests/MetricTests/NonCommentingSourceStatementsTests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Tests/MetricTests/XCTestManifests.swift b/Tests/MetricTests/XCTestManifests.swift index 5445526..cb1b54b 100644 --- a/Tests/MetricTests/XCTestManifests.swift +++ b/Tests/MetricTests/XCTestManifests.swift @@ -1,5 +1,5 @@ /* - Copyright 2017 Ryuichi Saito, LLC and the Yanagiba project contributors + Copyright 2017 Ryuichi Laboratories and the Yanagiba project contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.