mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
18 lines
286 B
Plaintext
18 lines
286 B
Plaintext
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"standard",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
// Do not allow importing of implicit dependencies.
|
|
"import/no-extraneous-dependencies": "error"
|
|
}
|
|
}
|