1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/test/.eslintrc
Juan Picado @jotadeveloper a7c34b348e
chore: jest/expect-expect disabled
it does not make sense for now enable this
2018-12-16 19:05:52 +01:00

30 lines
453 B
Plaintext

{
"extends": [
"eslint:recommended"
],
"env": {
"node": true,
"mocha": true,
"es6": true
},
"globals": {
"jsdom": true
},
"rules": {
"valid-jsdoc": 0,
"no-redeclare": 1,
"jest/consistent-test-it": ["error", {"fn": "test"}],
"jest/no-jasmine-globals": 2,
"no-console": [
2,
{
"allow": [
"log",
"error"
]
}
],
"no-useless-escape": 0
}
}