27 строки
562 B
Plaintext
27 строки
562 B
Plaintext
{
|
|
"env": {
|
|
"jest": true,
|
|
"jest/globals": true,
|
|
},
|
|
"globals": {
|
|
"assert": true,
|
|
"sinon": true,
|
|
},
|
|
"plugins": ["jest"],
|
|
"rules": {
|
|
"import/no-extraneous-dependencies": ["error", {
|
|
// Allow dev-dependencies in this directory.
|
|
"devDependencies": true
|
|
}],
|
|
"jest/expect-expect": ["warn", {
|
|
// Register the custom matchers we use in this project.
|
|
"assertFunctionNames": [
|
|
"expect",
|
|
"sinon.assert.*",
|
|
"assertHasMatchingError",
|
|
"checkMinNodeVersion",
|
|
],
|
|
}],
|
|
},
|
|
}
|