mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
959fa06148
Remove duplicate className from Angular file tree GitOrigin-RevId: 238b1ad8631b5a861361113679a9f1f8a66da6ea
21 lines
422 B
Text
21 lines
422 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"
|
|
},
|
|
"overrides": [
|
|
// Extra rules for Cypress tests
|
|
{ "files": ["**/*.spec.ts"], "extends": ["plugin:cypress/recommended"] }
|
|
]
|
|
}
|