Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Options:
--noPrompt do not suggest to backup files when any `fix` option is selected
--init create configuration file for solhint
--disc do not check for solhint updates
--save save report to file on current folder
--save save report to file in current folder
--noPoster remove discord poster
-h, --help output usage information

Expand Down Expand Up @@ -119,7 +119,7 @@ It is now deprecated since version 5.1.0
### Multiple Configs
Multiple configs files can be used at once. All config files should be named `.solhint.json`.
If not done like this, multiple hierarchy configuration will not work.
Solhint will go though all config files automatically.
Solhint will go through all config files automatically.

Given this structure:
```
Expand Down
2 changes: 1 addition & 1 deletion docs/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ title: "Rule Index of Solhint"
| Rule Id | Error | Recommended | Deprecated |
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- |
| [comprehensive-interface](./rules/miscellaneous/comprehensive-interface.md) | Check that all public or external functions are overridden. This is useful to make sure that the whole API is extracted in an interface. | | |
| [import-path-check](./rules/miscellaneous/import-path-check.md) | Check if an import file exits in target path | $~~~~~~~~$✔️ | |
| [import-path-check](./rules/miscellaneous/import-path-check.md) | Check if an import file exists in target path | $~~~~~~~~$✔️ | |
| [quotes](./rules/miscellaneous/quotes.md) | Enforces the use of double or simple quotes as configured for string literals. Values must be 'single' or 'double'. | $~~~~~~~~$✔️ | |


Expand Down
2 changes: 1 addition & 1 deletion docs/rules/miscellaneous/import-path-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ title: "import-path-check | Solhint"


## Description
Check if an import file exits in target path
Check if an import file exists in target path

## Options
This rule accepts an array of options:
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/miscellaneous/import-path-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const meta = {
type: 'miscellaneous',

docs: {
description: `Check if an import file exits in target path`,
description: `Check if an import file exists in target path`,
category: 'Miscellaneous',
options: [
{
Expand Down
2 changes: 1 addition & 1 deletion solhint.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function init() {
.option('--noPrompt', 'do not suggest to backup files when any `fix` option is selected')
.option('--init', 'create configuration file for solhint')
.option('--disc', 'do not check for solhint updates')
.option('--save', 'save report to file on current folder')
.option('--save', 'save report to file in current folder')
.option('--noPoster', 'remove discord poster')
.description('Linter for Solidity programming language')
.action(execMainAction)
Expand Down
Loading