.eslintrc
 1  {
 2  	"root": true,
 3  
 4  	"extends": "@ljharb",
 5  
 6  	"rules": {
 7  		"func-name-matching": 0,
 8  		"indent": [2, 4],
 9  		"max-nested-callbacks": [2, 3],
10  		"max-params": [2, 3],
11  		"max-statements": [2, 20],
12  		"no-new-func": [1],
13  		"strict": [0]
14  	}
15  }