add .soliumrc.json. without it solium exits

This commit is contained in:
Maximilian Krüger 2017-12-15 11:01:15 +01:00
parent b270bb240b
commit d090b1d403
1 changed files with 20 additions and 0 deletions

20
truffle/.soliumrc.json Normal file
View File

@ -0,0 +1,20 @@
{
"extends": "solium:all",
"plugins": [
"security"
],
"rules": {
"quotes": [
"error",
"double"
],
"indentation": [
"error",
4
],
"arg-overflow": [
"warning",
4
]
}
}