Skip to content

Commit

Permalink
Added support for EXT-X-KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
Eltik committed Jun 22, 2023
1 parent 6c5f366 commit 278302c
Show file tree
Hide file tree
Showing 11 changed files with 3,732 additions and 324 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/dist
**/*.js
**/*.html
33 changes: 33 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-loss-of-precision": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
"@typescript-eslint/no-unnecessary-type-constraint": "warn",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "warn",
"no-console": "off",
"no-empty": "warn",
"no-prototype-builtins": "off",
"no-redeclare": "warn",
"no-useless-escape": "off",
"no-async-promise-executor": "off",
"prefer-const": "warn",
"array-bracket-spacing": ["error", "never"]
}
}
12 changes: 12 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
node_modules
*.js
*.d.ts
*.md
*.json
*.lock
*.yml
*.yaml
Dockerfile
Dockerfile.*
.eslintrc
*.html
13 changes: 13 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"useTabs": false,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"parser": "typescript",
"printWidth": 10000,
"proseWrap": "never",
"endOfLine": "lf"
}
189 changes: 100 additions & 89 deletions dist/libraries/server.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

Loading

0 comments on commit 278302c

Please sign in to comment.