-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
### Description of the Changes Aliging the template ref with the TS refacotr #### Resolves FEC-FEC-13604 #### Related PRs kaltura/playkit-js-ui#843 kaltura/kaltura-player-js#704 --------- Co-authored-by: JonathanTGold <jonathan.gold@[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ types/ | |
demo/ | ||
webpack.config.js | ||
tsconfig.json | ||
tsconfig-lib.json | ||
node_modules | ||
.eslintrc.json |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"extends": [ | ||
"plugin:prettier/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"plugins": [ | ||
"prettier", | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"max-len": [ | ||
"error", | ||
{ | ||
"code": 150, | ||
"ignoreComments": true, | ||
"ignoreStrings": true, | ||
"ignoreUrls": true, | ||
"ignoreTemplateLiterals": true, | ||
"ignoreRegExpLiterals": true | ||
} | ||
], | ||
"eol-last": "off", | ||
"prettier/prettier": "error", | ||
"@typescript-eslint/explicit-function-return-type": "warn", | ||
"@typescript-eslint/no-non-null-assertion": "off", | ||
"@typescript-eslint/no-unused-vars": "error", | ||
"@typescript-eslint/no-explicit-any": "warn", | ||
"@typescript-eslint/explicit-member-accessibility": [ | ||
"error", | ||
{ | ||
"accessibility": "explicit", | ||
"overrides": { | ||
"accessors": "explicit", | ||
"constructors": "no-public", | ||
"methods": "explicit", | ||
"properties": "explicit", | ||
"parameterProperties": "explicit" | ||
} | ||
} | ||
], | ||
"block-scoped-var": "error", | ||
"arrow-parens": "error", | ||
"eqeqeq": "error", | ||
"no-var": "error", | ||
"no-console": "error", | ||
"prefer-const": "error", | ||
"prefer-arrow-callback": "error", | ||
"no-trailing-spaces": "error", | ||
"quotes": ["warn", "single", { "avoidEscape": true }] | ||
}, | ||
"overrides": [], | ||
"settings": {}, | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Canary CI/CD | ||
name: Canary | ||
run-name: Canary | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
canary: | ||
if: ${{ github.actor != 'PlaykitJs-Bot' }} | ||
uses: kaltura/playkit-js-common/.github/workflows/canary_plugin.yaml@master | ||
secrets: inherit | ||
with: | ||
node-version: "20.x" | ||
schema-type: "playerV3Versions" | ||
tests-yarn-run-to-execute: 'build lint type-check test' |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
dist/ | ||
lib/ | ||
demo/ | ||
node_modules | ||
*.log | ||
.idea | ||
types/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.