fix lint errors

This commit is contained in:
Francisco Giordano
2018-10-01 18:56:50 -03:00
parent caa0db9fa9
commit 32d0f6770c
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
"indentation": ["error", 2],
"lbrace": "off",
"linebreak-style": ["error", "unix"],
"max-len": ["error", 79],
"max-len": ["error", 120],
"no-constant": ["error"],
"no-empty-blocks": "off",
"quotes": ["error", "double"],

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.24;
import { Ownable } from '../ownership/Ownable.sol';
import { Ownable } from "../ownership/Ownable.sol";
contract OwnableMock is Ownable {