mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
460badb97b
* Update multiple packages - @typescript-eslint/eslint-plugin - @typescript-eslint/parser - eslint-config-react-app - eslint-config-standard - react-scripts Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * fix type Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * deduplicate code Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Disable test because it doesn't work Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * repair service worker Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Lazy load mermaid Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * use show error Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * fix tsconfig in cypress Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * fix import integration test Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
23 lines
401 B
JSON
23 lines
401 B
JSON
{
|
|
"parserOptions": {
|
|
"tsconfigRootDir": "",
|
|
"project": [
|
|
"./tsconfig.json"
|
|
]
|
|
},
|
|
"plugins": [
|
|
"cypress",
|
|
"chai-friendly"
|
|
],
|
|
"extends": [
|
|
"plugin:cypress/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-expressions": 0,
|
|
"no-unused-expressions": 0,
|
|
"chai-friendly/no-unused-expressions": 2
|
|
},
|
|
"env": {
|
|
"cypress/globals": true
|
|
}
|
|
}
|