Last Updated: July 18, 2025
·
13.41K
· fluxsauce

ESLint Configuration for Mocha and Chai

Nobody likes false positives! The following configuration works with ESLint 4 with Chai's BDD style should and expect interfaces.

module.exports = {
 "env": {
 "mocha": true
 },
 "rules": {
 "no-unused-vars": [
 "error",
 {
 "varsIgnorePattern": "should|expect"
 }
 ]
 }
}

1 Response
Add your response

mnmn

over 1 year ago ·