Skip to content

Commit 3ac3a9a

Browse files
committed
Enable yamllint check
Fixes #2991
1 parent 55a4b03 commit 3ac3a9a

File tree

8 files changed

+122
-124
lines changed

8 files changed

+122
-124
lines changed

.github/ISSUE_TEMPLATE/BASICFORMAT_BUG.yml

+34-34
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,38 @@ name: BasicFormat Bug
22
description: A bug in the BasicFormat module
33
labels: [bug, BasicFormat]
44
body:
5-
- type: markdown
6-
attributes:
7-
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing BasicFormat Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftbasicformat/filingbugreports).
8-
- type: textarea
9-
id: source
10-
attributes:
11-
label: Source Code
12-
description: The source code that, when formatted, produces incorrectly formatted code.
13-
value: |
14-
```swift
15-
```
16-
- type: textarea
17-
id: source
18-
attributes:
19-
label: Actual Formatted Code
20-
description: The way that `BasicFormat` formats the above code
21-
value: |
22-
```swift
23-
```
5+
- type: markdown
6+
attributes:
7+
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing BasicFormat Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftbasicformat/filingbugreports).
248
- type: textarea
25-
id: source
26-
attributes:
27-
label: Expected Formatted Code
28-
description: The way that you think `BasicFormat` should format the code
29-
value: |
30-
```swift
31-
```
32-
- type: textarea
33-
id: description
34-
attributes:
35-
label: Description
36-
description: |
37-
Any additional information you can provide for this issue, like
38-
- Has this issue started occurring recently?
39-
- Is the issue only happening under certain circumstances?
9+
id: source
10+
attributes:
11+
label: Source Code
12+
description: The source code that, when formatted, produces incorrectly formatted code.
13+
value: |
14+
```swift
15+
```
16+
- type: textarea
17+
id: source
18+
attributes:
19+
label: Actual Formatted Code
20+
description: The way that `BasicFormat` formats the above code
21+
value: |
22+
```swift
23+
```
24+
- type: textarea
25+
id: source
26+
attributes:
27+
label: Expected Formatted Code
28+
description: The way that you think `BasicFormat` should format the code
29+
value: |
30+
```swift
31+
```
32+
- type: textarea
33+
id: description
34+
attributes:
35+
label: Description
36+
description: |
37+
Any additional information you can provide for this issue, like
38+
- Has this issue started occurring recently?
39+
- Is the issue only happening under certain circumstances?

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: Bug Report
22
description: Something isn't working as expected
33
labels: [bug]
44
body:
5-
- type: textarea
6-
id: description
7-
attributes:
8-
label: Description
9-
description: |
10-
A short description of the incorrect behavior.
11-
If you think this issue has been recently introduced and did not occur in an
12-
earlier version, please note that. If possible, include the last version that
13-
the behavior was correct in addition to your current version.
14-
- type: textarea
15-
id: steps-to-reproduce
16-
attributes:
17-
label: Steps to Reproduce
18-
description: Replace this paragraph with an explanation of how to reproduce the incorrect behavior.
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: |
10+
A short description of the incorrect behavior.
11+
If you think this issue has been recently introduced and did not occur in an
12+
earlier version, please note that. If possible, include the last version that
13+
the behavior was correct in addition to your current version.
14+
- type: textarea
15+
id: steps-to-reproduce
16+
attributes:
17+
label: Steps to Reproduce
18+
description: Replace this paragraph with an explanation of how to reproduce the incorrect behavior.

.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Feature Request
22
description: A suggestion for a new feature
33
labels: [enhancement]
44
body:
5-
- type: textarea
6-
id: description
7-
attributes:
8-
label: Description
9-
description: |
10-
A description of your proposed feature.
11-
Examples that show what's missing, or what new capabilities will be possible, are very helpful!
12-
If this feature unlocks new use-cases please describe them.
13-
Provide links to existing issues or external references/discussions, if appropriate.
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: |
10+
A description of your proposed feature.
11+
Examples that show what's missing, or what new capabilities will be possible, are very helpful!
12+
If this feature unlocks new use-cases please describe them.
13+
Provide links to existing issues or external references/discussions, if appropriate.

.github/ISSUE_TEMPLATE/PARSER_BUG.yml

+33-33
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,36 @@ name: SwiftParser Bug
22
description: A bug in the new Swift parser
33
labels: [bug, SwiftParser]
44
body:
5-
- type: markdown
6-
attributes:
7-
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports).
8-
- type: dropdown
9-
id: issue-type
10-
attributes:
11-
label: Issue Kind
12-
description: What kind of issue is this? See [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports) for more details.
13-
options:
14-
- Round-Trip Failure
15-
- Parser Crash
16-
- Parse of Valid Source Failed
17-
- Parse of Valid Source Produced Invalid Syntax Tree
18-
- Bad Diagnostic Produced
19-
- Other
20-
- I Don’t Know
21-
- type: textarea
22-
id: source
23-
attributes:
24-
label: Source Code
25-
description: The source code that, when fed into the parser, produces the bug.
26-
value: |
27-
```swift
28-
```
29-
- type: textarea
30-
id: description
31-
attributes:
32-
label: Description
33-
description: |
34-
Any additional information you can provide for this issue, like
35-
- What did you expect to happen?
36-
- Has this issue started occurring recently?
37-
- If it’s a crash, the stack trace.
5+
- type: markdown
6+
attributes:
7+
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports).
8+
- type: dropdown
9+
id: issue-type
10+
attributes:
11+
label: Issue Kind
12+
description: What kind of issue is this? See [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports) for more details.
13+
options:
14+
- Round-Trip Failure
15+
- Parser Crash
16+
- Parse of Valid Source Failed
17+
- Parse of Valid Source Produced Invalid Syntax Tree
18+
- Bad Diagnostic Produced
19+
- Other
20+
- I Don’t Know
21+
- type: textarea
22+
id: source
23+
attributes:
24+
label: Source Code
25+
description: The source code that, when fed into the parser, produces the bug.
26+
value: |
27+
```swift
28+
```
29+
- type: textarea
30+
id: description
31+
attributes:
32+
label: Description
33+
description: |
34+
Any additional information you can provide for this issue, like
35+
- What did you expect to happen?
36+
- Has this issue started occurring recently?
37+
- If it’s a crash, the stack trace.

.github/ISSUE_TEMPLATE/config.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This source file is part of the Swift.org open source project
2-
#
3-
# Copyright (c) 2022 Apple Inc. and the Swift project authors
4-
# Licensed under Apache License v2.0 with Runtime Library Exception
5-
#
6-
# See https://swift.org/LICENSE.txt for license information
7-
# See https://swift.org/CONTRIBUTORS.txt for Swift project authors
2+
#
3+
# Copyright (c) 2022 Apple Inc. and the Swift project authors
4+
# Licensed under Apache License v2.0 with Runtime Library Exception
5+
#
6+
# See https://swift.org/LICENSE.txt for license information
7+
# See https://swift.org/CONTRIBUTORS.txt for Swift project authors
88

9-
contact_links:
10-
- name: Discussion Forum
11-
url: https://forums.swift.org/tags/c/development/tooling/39/swift-syntax
12-
about: Ask and answer questions about SwiftSyntax
13-
- name: SwiftSyntax Documentation
14-
url: https://swiftpackageindex.com/swiftlang/swift-syntax/documentation/swiftsyntax
15-
about: Learn about how to use the SwiftSyntax in your projects
9+
contact_links:
10+
- name: Discussion Forum
11+
url: https://forums.swift.org/tags/c/development/tooling/39/swift-syntax
12+
about: Ask and answer questions about SwiftSyntax
13+
- name: SwiftSyntax Documentation
14+
url: https://swiftpackageindex.com/swiftlang/swift-syntax/documentation/swiftsyntax
15+
about: Learn about how to use the SwiftSyntax in your projects

.github/workflows/pull_request.yml

-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ jobs:
2020
docs_check_enabled: false
2121
# https://github.com/swiftlang/swift-syntax/issues/2988
2222
format_check_enabled: false
23-
# https://github.com/swiftlang/swift-syntax/issues/2991
24-
yamllint_check_enabled: false

.spi.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
# This is manifest file for the Swift Package Index for it to
1+
# This is manifest file for the Swift Package Index for it to
22
# auto-generate and host DocC documentation.
33
# For reference see https://swiftpackageindex.com/swiftpackageindex/spimanifest/documentation/spimanifest/commonusecases#Host-DocC-documentation-in-the-Swift-Package-Index.
44

55
version: 1
66
builder:
77
configs:
88
- documentation_targets:
9-
# First item in the list is the "landing" (default) target
10-
- SwiftSyntax
11-
- SwiftBasicFormat
12-
- SwiftCompilerPlugin
13-
- SwiftDiagnostics
14-
- SwiftIDEUtils
15-
- SwiftIfConfig
16-
- SwiftLexicalLookup
17-
- SwiftOperators
18-
- SwiftParser
19-
- SwiftParserDiagnostics
20-
- SwiftRefactor
21-
- SwiftSyntaxBuilder
22-
- SwiftSyntaxMacros
23-
- SwiftSyntaxMacroExpansion
24-
- SwiftSyntaxMacrosGenericTestSupport
25-
- SwiftSyntaxMacrosTestSupport
9+
# First item in the list is the "landing" (default) target
10+
- SwiftSyntax
11+
- SwiftBasicFormat
12+
- SwiftCompilerPlugin
13+
- SwiftDiagnostics
14+
- SwiftIDEUtils
15+
- SwiftIfConfig
16+
- SwiftLexicalLookup
17+
- SwiftOperators
18+
- SwiftParser
19+
- SwiftParserDiagnostics
20+
- SwiftRefactor
21+
- SwiftSyntaxBuilder
22+
- SwiftSyntaxMacros
23+
- SwiftSyntaxMacroExpansion
24+
- SwiftSyntaxMacrosGenericTestSupport
25+
- SwiftSyntaxMacrosTestSupport
2626
custom_documentation_parameters: [--experimental-skip-synthesized-symbols]

SwiftSyntaxDevUtils/Sources/swift-syntax-dev-utils/commands/VerifySourceCode.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ struct VerifySpiYmlExecutor {
138138
/// a dependency from this script on a YAML parser and that just doesn’t seem worth it.
139139
private func targetsInSwiftPackageIndexManifest() throws -> [String] {
140140
let extractTargetRegex = Regex {
141-
#/^ - /#
141+
#/^ - /#
142142
Capture(ZeroOrMore(.word))
143143
#/$/#
144144
}

0 commit comments

Comments
 (0)