IntelliTect / IntelliTect/CodingGuidelines
INTL0101 Flag Attribute if anything is on same line
Abierto
enhancement
- Lenguaje dominante
- C#
- Estrellas
- 12
- Forks
- 16
- Merge medio
- 2 min
- PR fusionados (30 d)
- 7
Descripción
```
public enum Foo
{
[A]Bar
}
```
should be
```
public enum Foo
{
[A]
Bar
}
```
Also consider
`[A]public void Bar() { }`
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.