Files
srt-webvtt/.eslintrc
2018-01-19 15:49:38 +06:00

32 lines
429 B
Plaintext

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