Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Jul 7, 2024
1 parent f0593e2 commit de62519
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"visibility-modifier-order": "error",
"code-complexity": ["error", 9],
"function-max-lines": ["error", 80],
"max-line-length": ["error", 150],
"max-line-length": ["error", 160],
"no-empty-blocks": "off",
"no-unused-vars": "error",
"payable-fallback": "off",
Expand Down
1 change: 0 additions & 1 deletion contracts/Nexus.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ pragma solidity ^0.8.26;
import { UUPSUpgradeable } from "solady/src/utils/UUPSUpgradeable.sol";
import { PackedUserOperation } from "account-abstraction/contracts/interfaces/PackedUserOperation.sol";
import { ExecLib } from "./lib/ExecLib.sol";
import { Execution } from "./types/DataTypes.sol";
import { INexus } from "./interfaces/INexus.sol";
import { IModule } from "./interfaces/modules/IModule.sol";
import { BaseAccount } from "./base/BaseAccount.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/INexusEventsAndErrors.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pragma solidity ^0.8.26;
// Nexus: A suite of contracts for Modular Smart Accounts compliant with ERC-7579 and ERC-4337, developed by Biconomy.
// Learn more at https://biconomy.io. To report security issues, please contact us at: [email protected]

import { CallType, ExecType } from "../lib/ModeLib.sol";
import { CallType } from "../lib/ModeLib.sol";
import { PackedUserOperation } from "account-abstraction/contracts/interfaces/PackedUserOperation.sol";

/// @title Nexus - INexus Events and Errors
Expand Down
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[fmt]
bracket_spacing = true
int_types = "long"
line_length = 150
line_length = 160
multiline_func_header = "all"
number_underscore = "thousands"
quote_style = "double"
Expand Down

0 comments on commit de62519

Please sign in to comment.