Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pancakeswap/eslint-plugin-address
evm address lint rule
https://github.com/pancakeswap/eslint-plugin-address
eslint eslint-plugin
Last synced: 28 days ago
JSON representation
evm address lint rule
- Host: GitHub
- URL: https://github.com/pancakeswap/eslint-plugin-address
- Owner: pancakeswap
- License: mit
- Created: 2023-09-19T11:44:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-19T07:03:06.000Z (about 1 year ago)
- Last Synced: 2024-09-29T01:04:30.487Z (about 1 month ago)
- Topics: eslint, eslint-plugin
- Language: TypeScript
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-plugin-address
![npm](https://img.shields.io/npm/v/eslint-plugin-address)
![GitHub](https://img.shields.io/github/license/pancakeswap/eslint-plugin-address)
![npm](https://img.shields.io/npm/dm/eslint-plugin-address)evm address lint rule
## Installation
```sh
pnpm add -D eslint-plugin-address eslint
```It is also possible to install ESLint globally rather than locally.
## Configuration
Add "address" plugin to your config files.
```jsonc
{
"plugins": ["address", ...others],
}
```Enable or disable the rules
```jsonc
{
"rules": {
// default set
"address/addr-type": "error",
// or, specific use checksumed address
"address/addr-type": ["error", "checksum"],
// or, specific use lowercase address
"address/addr-type": ["error", "lowercase"]
}
}
```