Skip to content

Commit 2887b37

Browse files
authored
2021-01-10 Version 1.0.0: Updated README.md
1 parent d4bf78f commit 2887b37

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Custom Checkstyle checks for Android projects.
88

99
## Checks
1010

11-
| Check | Description | Level |
11+
| Check | Description |
1212
| --- | --- | --- |
13-
| `AndroidViewFieldNameCheck` | Check Android view field name (example: for `TextView` variable's name must be starts with `tv`) | `Error` |
14-
| `ContextFirstParameterCheck` | Check Context as first parameter in a class constructor or in an arguments list | `Error` |
15-
| `MethodObjectReturnAnnotationCheck` | Check annotation for a method with return values (by default it is `@NonNull` and `@Nullable`) | `Error` |
16-
| `MethodParametersAnnotationCheck` | Check annotation for an argument in a class constructor or a method (by default it is `@NonNull` and `@Nullable`) | `Error` |
13+
| `AndroidViewFieldNameCheck` | Check Android view field name (example: for `TextView` variable's name must be starts with `tv`) |
14+
| `ContextFirstParameterCheck` | Check Context as first parameter in a class constructor or in an arguments list |
15+
| `MethodObjectReturnAnnotationCheck` | Check annotation for a method with return values (by default it is `@NonNull` and `@Nullable`) |
16+
| `MethodParametersAnnotationCheck` | Check annotation for an argument in a class constructor or a method (by default it is `@NonNull` and `@Nullable`) |
1717

1818
## Installation
1919

@@ -32,16 +32,16 @@ Add to `TreeWalker` module:
3232

3333
```xml
3434
<module name="com.smlnskgmail.jaman.checkstyle.checks.AndroidViewFieldNameCheck">
35-
<property name="id" value="AndroidViewFieldNameCheck"/>
35+
<property name="id" value="AndroidViewFieldNameCheck" />
3636
</module>
3737
<module name="com.smlnskgmail.jaman.checkstyle.checks.ContextFirstParameterCheck">
38-
<property name="id" value="ContextFirstParameterCheck"/>
38+
<property name="id" value="ContextFirstParameterCheck" />
3939
</module>
4040
<module name="com.smlnskgmail.jaman.checkstyle.checks.MethodObjectReturnAnnotationCheck">
41-
<property name="id" value="MethodObjectReturnAnnotationCheck"/>
41+
<property name="id" value="MethodObjectReturnAnnotationCheck" />
4242
</module>
4343
<module name="com.smlnskgmail.jaman.checkstyle.checks.MethodParametersAnnotationCheck">
44-
<property name="id" value="MethodParametersAnnotationCheck"/>
44+
<property name="id" value="MethodParametersAnnotationCheck" />
4545
</module>
4646
```
4747

0 commit comments

Comments
 (0)