Skip to content

Commit

Permalink
Catch up with changes to libTooling options
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichis committed Aug 14, 2017
1 parent cf3dbc6 commit b995acb
Show file tree
Hide file tree
Showing 68 changed files with 68 additions and 69 deletions.
2 changes: 1 addition & 1 deletion Package.resolved
Expand Up @@ -15,7 +15,7 @@
"repositoryURL": "https://github.com/yanagiba/swift-ast", "repositoryURL": "https://github.com/yanagiba/swift-ast",
"state": { "state": {
"branch": null, "branch": null,
"revision": "af3edc8e3301dfc846efc1375949391dbbcd6ed1", "revision": "875d28b94ec6f063da9fb6fa2353f3b06ecdc538",
"version": null "version": null
} }
} }
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -43,7 +43,7 @@ let package = Package(
dependencies: [ dependencies: [
.package( .package(
url: "https://github.com/yanagiba/swift-ast", url: "https://github.com/yanagiba/swift-ast",
.revision("af3edc8e3301dfc846efc1375949391dbbcd6ed1") .revision("875d28b94ec6f063da9fb6fa2353f3b06ecdc538")
), ),
.package( .package(
url: "https://github.com/yanagiba/bocho", url: "https://github.com/yanagiba/bocho",
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
3 changes: 1 addition & 2 deletions Sources/Lint/Driver.swift
Expand Up @@ -88,12 +88,11 @@ public class Driver {
IssuePool.shared.clearIssues() IssuePool.shared.clearIssues()


let diagnosticConsumer = SilentDiagnosticConsumer() let diagnosticConsumer = SilentDiagnosticConsumer()
let toolingOption = ToolActionOption(sequenceExpressionFoldingEnabled: true)
let tooling = ToolAction() let tooling = ToolAction()
let result = tooling.run( let result = tooling.run(
sourceFiles: sourceFiles, sourceFiles: sourceFiles,
diagnosticConsumer: diagnosticConsumer, diagnosticConsumer: diagnosticConsumer,
option: toolingOption) options: [.foldSequenceExpression])


guard result.exitCode == ToolActionResult.success else { guard result.exitCode == ToolActionResult.success else {
return .failedInParsingFile return .failedInParsingFile
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
@@ -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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
@@ -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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
@@ -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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
@@ -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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion 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"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
Expand Down

0 comments on commit b995acb

Please sign in to comment.