From 7f6bb543a975fd427afcd2a1fc92a705390b3638 Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Mon, 26 Aug 2019 11:23:29 +0200 Subject: [PATCH] Fix deprecated option style for docCheck solhint was updated and now warns about deprecated option values --- test/.solhint.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/.solhint.json b/test/.solhint.json index 1379d570d..0a8b2adfc 100644 --- a/test/.solhint.json +++ b/test/.solhint.json @@ -2,7 +2,7 @@ "extends": "solhint:default", "plugins": [], "rules": { - "compiler-fixed": false, - "no-inline-assembly": false + "compiler-fixed": "off", + "no-inline-assembly": "off" } } \ No newline at end of file