mirror of
https://github.com/danbulant/docker-compose
synced 2026-06-19 14:41:16 +00:00
31 lines
594 B
JSON
31 lines
594 B
JSON
{
|
|
"extends": [
|
|
"es/2015/server",
|
|
"plugin:jest/recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"no-console" :"off",
|
|
"@typescript-eslint/indent": "off",
|
|
"@typescript-eslint/interface-name-prefix": "off",
|
|
"indent": [
|
|
"warn",
|
|
2,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
]
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"jest",
|
|
"@typescript-eslint"
|
|
],
|
|
"env": {
|
|
"jest/globals": true
|
|
}
|
|
}
|