Files
srt-webvtt/.eslintrc
2018-01-19 20:11:20 +06:00

35 lines
485 B
Plaintext

{
"extends": "airbnb",
"rules": {
"no-console": [
"error",
{
"allow": [
"warn",
"error",
"info"
]
}
],
"prefer-promise-reject-errors":[
"off"
],
"symbol-description": [
"off"
],
"no-underscore-dangle": [
"off"
],
"no-param-reassign": [
"off"
],
"import/no-unresolved": [
"off"
]
},
"env": {
"browser": true,
"node": true
}
}