mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ef0d9c5afc
Also fix acceptance tests, broken by a change in behaviour of the redis client. It now returns a promise from most operations. This interferes with how mocha handles callbacks in `before` blocks.
36 lines
991 B
Text
36 lines
991 B
Text
// this file was auto-generated, do not edit it directly.
|
|
// instead run bin/update_build_scripts from
|
|
// https://github.com/sharelatex/sharelatex-dev-environment
|
|
// version: 1.1.18
|
|
{
|
|
"extends": [
|
|
"standard",
|
|
"prettier",
|
|
"prettier/standard",
|
|
],
|
|
"plugins": [
|
|
"mocha",
|
|
"chai-expect",
|
|
"chai-friendly"
|
|
],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
// Add some mocha specific rules
|
|
"mocha/handle-done-callback": "error",
|
|
"mocha/no-exclusive-tests": "error",
|
|
"mocha/no-global-tests": "error",
|
|
"mocha/no-identical-title": "error",
|
|
"mocha/no-nested-tests": "error",
|
|
"mocha/no-pending-tests": "error",
|
|
"mocha/no-skipped-tests": "error",
|
|
|
|
// Add some chai specific rules
|
|
"chai-expect/missing-assertion": "error",
|
|
"chai-expect/terminating-properties": "error",
|
|
// Swap the no-unused-expressions rule with a more chai-friendly one
|
|
"no-unused-expressions": 0,
|
|
"chai-friendly/no-unused-expressions": "error"
|
|
}
|
|
}
|