mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-24 23:59:46 +02:00
* Move testing to 3001 port Create separate database for testing Add runtime configuration file support * Add babel-eslint parser
20 lines
289 B
Text
20 lines
289 B
Text
{
|
|
"extends": [
|
|
"codex"
|
|
],
|
|
"plugins": [
|
|
"chai-friendly"
|
|
],
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
"no-unused-expressions": 0,
|
|
"chai-friendly/no-unused-expressions": 2
|
|
},
|
|
"parser": "babel-eslint",
|
|
"globals": {
|
|
"fetch": true,
|
|
"alert": true
|
|
}
|
|
}
|