Skip to content

Commit

Permalink
fix: other typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dbale-altoros committed Dec 31, 2024
1 parent 7094419 commit b8ddb12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/shareable-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To use a shareable config, you have to add it to your Solhint configuration:
"extends": ["solhint:recommended", "protofire"]
```

This example shows the two kind of shareable configs that you can use: the ones included with Solhint, that start with `solhint:`, and the ones that you can install from npm. The latter are packages that are prefixed with `solhint-config-`, so in this case the package would be installed doing `npm install solhint-config-protofire` but used as just `protofire` when adding it.
This example shows the two types of shareable configs that you can use: the ones included with Solhint, that start with `solhint:`, and the ones that you can install from npm. The latter are packages that are prefixed with `solhint-config-`, so in this case the package would be installed doing `npm install solhint-config-protofire` but used as just `protofire` when adding it.

## Creating your own shareable config

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/naming/var-name-mixedcase.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const meta = {
type: 'naming',

docs: {
description: `Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming)`,
description: `Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming)`,
category: 'Style Guide Rules',
},

Expand Down

0 comments on commit b8ddb12

Please sign in to comment.