18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"assert": true,
|
|
"chai": true,
|
|
"sinon": true
|
|
},
|
|
"rules": {
|
|
"func-name-matching": 0,
|
|
"import/no-commonjs": 2,
|
|
"lines-between-class-members": 0,
|
|
"react/jsx-no-bind": 0,
|
|
"require-await": 0
|
|
}
|
|
};
|