Fix deprecated option style for docCheck

solhint was updated and now warns about deprecated option values
This commit is contained in:
Mathias Baumann 2019-08-26 11:23:29 +02:00
parent bb104546e1
commit 7f6bb543a9

View File

@ -2,7 +2,7 @@
"extends": "solhint:default",
"plugins": [],
"rules": {
"compiler-fixed": false,
"no-inline-assembly": false
"compiler-fixed": "off",
"no-inline-assembly": "off"
}
}