IntelliTect / IntelliTect/CodingGuidelines
INTL0101 Flag Attribute if anything is on same line
Open
enhancement
- Dominant language
- C#
- Stars
- 12
- Forks
- 16
- Avg merge
- 2m
- Merged PRs (30d)
- 7
Description
```
public enum Foo
{
[A]Bar
}
```
should be
```
public enum Foo
{
[A]
Bar
}
```
Also consider
`[A]public void Bar() { }`
Contributor guide
Assessment
This issue has not been assessed yet.