eslint-plugin-truffle
v0.3.1
Published
ESLint plugin for truffle development
Downloads
58
Readme
eslint-plugin-truffle
ESLint plugin for Truffle development.
Provides a custom environment containing Truffle global variables.
Installation
yarn add --dev eslint eslint-plugin-truffle
Usage
In your ESLint config file (ex.: .eslintrc
), add:
{
// ...
"env": {
// ...
"mocha": true, // for test files
"truffle/globals": true // same as "truffle/truffle": true
},
"plugins": [
// ...
"truffle"
// ...
]
// ...
}