1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-25 12:44:49 +07:00
verdaccio-ui/test/.eslintrc

30 lines
453 B
Plaintext
Raw Normal View History

2019-04-05 02:23:40 +07:00
{
"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
}
}