Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Update dependencies #3253

Closed
5 changes: 5 additions & 0 deletions .babelrc
@@ -0,0 +1,5 @@
{
"presets": [
"es2015"
]
}
98 changes: 98 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,98 @@
{
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2015
},
"env": {
"browser": true,
"jquery": true,
"node": true,
"es6": true
},
"globals": {
"it": "readonly",
"describe": "readonly",
"beforeEach": "readonly",
"before": "readonly",
"afterEach": "readonly",
"after": "readonly",
"kendo": "readonly",
"utils": "readonly",
"MediaPlayer": "readonly",
"Dash": "readonly",
"WebKitMediaSource": "readonly",
"MediaSource": "readonly",
"WebKitMediaKeys": "readonly",
"MSMediaKeys": "readonly",
"MediaKeys": "readonly",
"Caster": "readonly",
"TextTrackCue": "readonly",
"HTMLMediaElement": "readonly",
"MediaError": "readonly",
"cea608parser": "readonly",
"dashjs": "readonly"
},
"rules": {
"indent": [
2,
4,
{
"SwitchCase": 1
}
],
"quotes": [
2,
"single"
],
"no-mixed-spaces-and-tabs": 2,
"no-trailing-spaces": 2,
"comma-dangle": [
2,
"never"
],
"keyword-spacing": [
2,
{}
],
"space-infix-ops": 2,
"space-before-blocks": [
2,
"always"
],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"semi": [
2,
"always"
],
"one-var": [
2,
{
"uninitialized": "always",
"initialized": "never"
}
],
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
"no-caller": 2,
"no-use-before-define": [
2,
{
"functions": false
}
],
"no-undef": 2,
"no-unused-vars": 2,
"strict": 0,
"no-loop-func": 2
}
}
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -174,6 +174,7 @@ pip-log.txt
# Unit test / coverage reports
.coverage
.tox
.nyc_output

#Translations
*.mo
Expand Down
40 changes: 0 additions & 40 deletions .jscsrc

This file was deleted.

34 changes: 0 additions & 34 deletions .jshintrc

This file was deleted.