From 00bb28574e8ed2c95e4bce797213c95edddac00b Mon Sep 17 00:00:00 2001
From: mook <mookjpy@gmail.com>
Date: Mon, 15 Nov 2021 23:15:10 +0900
Subject: [PATCH] chore: fix wrong default value in comment

* The default value for `allow-unused` is false
---
 .golangci.example.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.golangci.example.yml b/.golangci.example.yml
index 3a2f750ace85..ff519ff2bef9 100644
--- a/.golangci.example.yml
+++ b/.golangci.example.yml
@@ -565,7 +565,7 @@ linters-settings:
     block-size: 1
 
   nolintlint:
-    # Disable to ensure that all nolint directives actually have an effect. Default is true.
+    # Disable to ensure that all nolint directives actually have an effect. Default is false.
     allow-unused: false
     # Disable to ensure that nolint directives don't have a leading space. Default is true.
     allow-leading-space: true