mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
18 lines
286 B
Text
18 lines
286 B
Text
|
{
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"standard",
|
||
|
"prettier"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2018
|
||
|
},
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"rules": {
|
||
|
// Do not allow importing of implicit dependencies.
|
||
|
"import/no-extraneous-dependencies": "error"
|
||
|
}
|
||
|
}
|