Skip to content

Commit

Permalink
fix: Remove redundant explicitTypes config (#661)
Browse files Browse the repository at this point in the history
When this option is defined, it spams the console with Ignored unknown option
[...] messages during test. explicitTest was removed from prettier in September
2022; Dependabot recently upgraded us to ^1.1.3, which is from March 2023.

prettier-solidity/prettier-plugin-solidity#730
  • Loading branch information
pxrl authored May 8, 2023
1 parent b742561 commit 1d79bf1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{
"printWidth": 120,
"bracketSpacing": true,
"explicitTypes": "preserve",
"tabWidth": 2,
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"explicitTypes": "always"
"singleQuote": false
}
},
{
Expand Down

0 comments on commit 1d79bf1

Please sign in to comment.