mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4b308553be
[misc] move the linting setup to the root of the monorepo GitOrigin-RevId: 1633e2a58598add0b727738cd3bfba0ab7bae781
17 lines
286 B
Text
17 lines
286 B
Text
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"standard",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020
|
|
},
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
// Do not allow importing of implicit dependencies.
|
|
"import/no-extraneous-dependencies": "error"
|
|
}
|
|
}
|