From 4329ccde91c60624d88d751875ec544b3b465020 Mon Sep 17 00:00:00 2001
From: jidicula <johanan@forcepush.tech>
Date: Sat, 13 Feb 2021 14:16:01 -0500
Subject: [PATCH] feat: Add force-exclude config

Related to: https://github.com/psf/black/issues/1985#issuecomment-778663578
---
 pyproject.toml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index b125045..9745d85 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,7 +8,11 @@ exclude = '''
   | build
   | dist
   | \.mypy_cache
-  | ignored                     # files in this dir should be ignored
+)\
+'''
+force-exclude = '''
+/(
+   ignored                     # files in this dir are ignored
 )\
 '''