SimpleRestClients/.eslintrc

20 строки
383 B
Plaintext
Исходник Обычный вид История

2019-05-13 13:02:19 +03:00
{
2019-07-19 14:11:48 +03:00
"parserOptions": {
"project": [
"./tsconfig.json",
"./tsconfig.test.json"
]
2019-07-19 14:11:48 +03:00
},
2019-05-13 13:02:19 +03:00
"extends": ["skype"],
"env": {
"jasmine": true
},
"rules": {
"no-console": ["error", { "allow": ["error", "warn"] }],
"prefer-const": "off",
"@typescript-eslint/no-floating-promises": "off",
"dot-notation": "off",
"arrow-body-style": "off"
2019-05-13 13:02:19 +03:00
}
}