From 6afeedd7fec1fcc7fe6e7ba64f3efea23e66b058 Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Fri, 27 Dec 2024 14:38:27 +0100 Subject: [PATCH 1/2] Update shareable-configs.md --- docs/shareable-configs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/shareable-configs.md b/docs/shareable-configs.md index 8e9edd27..10058e98 100644 --- a/docs/shareable-configs.md +++ b/docs/shareable-configs.md @@ -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 kinds 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 From 8a7f1c5030b0b5c9e84fa2e09a55f400d70d7482 Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Fri, 27 Dec 2024 15:17:37 +0100 Subject: [PATCH 2/2] Update var-name-mixedcase.md --- docs/rules/naming/var-name-mixedcase.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/naming/var-name-mixedcase.md b/docs/rules/naming/var-name-mixedcase.md index fe391e35..5983f5ea 100644 --- a/docs/rules/naming/var-name-mixedcase.md +++ b/docs/rules/naming/var-name-mixedcase.md @@ -12,7 +12,7 @@ title: "var-name-mixedcase | Solhint" ## Description -Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) +Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) ## Options This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Defaults to warn.