forked from OpenZeppelin/openzeppelin-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: apply eslint --fix across project
- Loading branch information
Showing
53 changed files
with
1,692 additions
and
807 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var Migrations = artifacts.require("./Migrations.sol"); | ||
var Migrations = artifacts.require('./Migrations.sol'); | ||
|
||
module.exports = function(deployer) { | ||
module.exports = function (deployer) { | ||
deployer.deploy(Migrations); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
//var Ownable = artifacts.require("ownership/Ownable.sol"); | ||
// var Ownable = artifacts.require("ownership/Ownable.sol"); | ||
|
||
// NOTE: Use this file to easily deploy the contracts you're writing. | ||
// (but make sure to reset this file before committing | ||
// with `git checkout HEAD -- migrations/2_deploy_contracts.js`) | ||
|
||
module.exports = function(deployer) { | ||
//deployer.deploy(Ownable); | ||
module.exports = function (deployer) { | ||
// deployer.deploy(Ownable); | ||
}; |
Oops, something went wrong.