docker-compose/.eslintrc.json
Paweł Niedzielski afc95c16f1 Migrate to Typescript
Removed Tape dev dependencies
Add Eslint plugin for Typescript
2019-07-14 03:13:14 +02:00

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
}
}