mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
26 lines
435 B
JSON
26 lines
435 B
JSON
{
|
|
"extends": [
|
|
"standard",
|
|
"plugin:prettier/recommended",
|
|
"plugin:mocha/recommended",
|
|
"plugin:chai-expect/recommended",
|
|
"plugin:chai-friendly/recommended"
|
|
],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["test/**/*.js"],
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"expect": "readonly"
|
|
}
|
|
}
|
|
]
|
|
}
|