mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 06:04:28 +07:00
30 lines
453 B
Plaintext
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
|
|
}
|
|
}
|