Skip to content

Commit

Permalink
Update always-camel-case.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zengxiaoluan authored Jul 22, 2024
1 parent 87c8509 commit c4ea1c8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/rules/always-camel-case.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,27 @@

## Rule Details

This rule aims to...
This rule aims to enforce camal case in naming things.

Examples of **incorrect** code for this rule:

```js
// fill me in
let a_b = 1;
```

Examples of **correct** code for this rule:

```js
// fill me in
let aB = 1;
```

### Options

If there are any options, describe them here. Otherwise, delete this section.


## When Not To Use It

Give a short description of when it would be appropriate to turn off this rule.


## Further Reading

If there are other links that describe the issue this rule addresses, please include them here in a bulleted list.

0 comments on commit c4ea1c8

Please sign in to comment.