├── .gitignore ├── CHANGELOG.md ├── README.md ├── contracts ├── Ignored.sol ├── IgnoredLicense.sol ├── IgnoredPragma.sol └── Lock.sol ├── hardhat.config.ts ├── package.json ├── src ├── error-codes.ts ├── index.ts ├── plugin.ts └── type-extensions.ts ├── tsconfig.dist.json ├── tsconfig.json └── warnings.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Ignored.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/contracts/Ignored.sol -------------------------------------------------------------------------------- /contracts/IgnoredLicense.sol: -------------------------------------------------------------------------------- 1 | pragma solidity *; 2 | -------------------------------------------------------------------------------- /contracts/IgnoredPragma.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: UNLICENSED 2 | -------------------------------------------------------------------------------- /contracts/Lock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/contracts/Lock.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/package.json -------------------------------------------------------------------------------- /src/error-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/src/error-codes.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/type-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/src/type-extensions.ts -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/tsconfig.json -------------------------------------------------------------------------------- /warnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangio/hardhat-ignore-warnings/HEAD/warnings.txt --------------------------------------------------------------------------------