18 lines
339 B
JSON
18 lines
339 B
JSON
{
|
|
"extends": "solhint:recommended",
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"printWidth": 110,
|
|
"bracketSpacing": true
|
|
}
|
|
],
|
|
"no-console": "off",
|
|
"quotes": ["error", "double"],
|
|
"indent": ["error", 2],
|
|
"compiler-version": ["error", "^0.6.0"]
|
|
},
|
|
"plugins": ["prettier"]
|
|
}
|