Skip to content

Commit d053d90

Browse files
committed
formatting updates
1 parent d40fa9c commit d053d90

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

haxe-checkstyle/constantname.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,18 @@ The default reg-ex as specified in the configuration below allows all upper case
2424
}
2525
```
2626

27-
<br>
28-
2927
### Valid
3028

31-
```
29+
```java
3230
static var COUNT:Int = 1;
3331

3432
static inline var COUNT:Int = 1;
3533
```
3634

3735
### Invalid
3836

39-
```
37+
```java
4038
static inline var Count:Int = 1;
4139
```
4240

43-
`Invalid const signature: Count (name should be ~/^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$/)`
41+
{{site.data.alerts.error}} Invalid const signature: Count (name should be ~/^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$/) {{site.data.alerts.end}}

haxe-checkstyle/listenername.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Listener Name
33
keywords: naming, listener, name
4+
toc: false
45
---
56

67
Checks the naming conventions of event listener functions specified using `listeners` property.

haxe-checkstyle/localvariablename.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Local Variable Name
3-
keywords: naming,local,variable,name
3+
keywords: naming, local, variable, name
4+
toc: false
45
---
56

67
Checks that the local variable names conform to a format specified by the `format` property.

haxe-checkstyle/membername.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Member Name
33
keywords: naming, member, name
4+
toc: false
45
---
56

67
Checks that instance variable names conform to a format specified by the `format` property.

0 commit comments

Comments
 (0)