forked from 4gray/iptvnator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
109 changed files
with
13,828 additions
and
6,970 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"es6": true, | ||
"es2017": true | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts"], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 10, | ||
"project": [ | ||
"./src/tsconfig.app.json", | ||
"./src/tsconfig.spec.json", | ||
"./e2e/tsconfig.e2e.json" | ||
], | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"modules": true | ||
} | ||
}, | ||
"plugins": ["@typescript-eslint", "@angular-eslint/eslint-plugin"], | ||
"rules": { | ||
"@typescript-eslint/indent": [ | ||
"error", | ||
4, | ||
{ | ||
"SwitchCase": 1, | ||
"CallExpression": { "arguments": "first" }, | ||
"FunctionExpression": { "parameters": "first" }, | ||
"FunctionDeclaration": { "parameters": "first" } | ||
} | ||
], | ||
"@typescript-eslint/no-empty-function": 0, | ||
"@typescript-eslint/no-var-requires": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/no-unsafe-call": 0, | ||
"@typescript-eslint/no-unsafe-member-access": 0, | ||
"@typescript-eslint/no-unsafe-assignment": 0, | ||
"@typescript-eslint/no-unsafe-return": 0, | ||
"@typescript-eslint/no-floating-promises": 0, | ||
"@angular-eslint/use-injectable-provided-in": "error", | ||
"@angular-eslint/no-attribute-decorator": "error" | ||
} | ||
}, | ||
{ | ||
"files": ["*.component.html"], | ||
"parser": "@angular-eslint/template-parser", | ||
"plugins": ["@angular-eslint/template"], | ||
"rules": { | ||
"@angular-eslint/template/banana-in-a-box": "error", | ||
"@angular-eslint/template/no-negated-async": "error" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
save=true | ||
save-exact=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
os: | ||
- linux | ||
- osx | ||
language: node_js | ||
node_js: | ||
- '12' | ||
- '10' | ||
dist: xenial | ||
sudo: required | ||
services: | ||
- xvfb | ||
before_script: | ||
- export DISPLAY=:99.0 | ||
install: | ||
- npm set progress=false | ||
- npm install | ||
script: | ||
- ng lint | ||
- npm run test | ||
- npm run e2e | ||
- npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
{ | ||
"peacock.color": "#557c9b", | ||
"workbench.colorCustomizations": { | ||
"activityBar.background": "#7295b1", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#e8d6e0", | ||
"activityBarBadge.foreground": "#15202b", | ||
"titleBar.activeBackground": "#557c9b", | ||
"titleBar.inactiveBackground": "#557c9b99", | ||
"titleBar.activeForeground": "#e7e7e7", | ||
"titleBar.inactiveForeground": "#e7e7e799", | ||
"statusBar.background": "#557c9b", | ||
"statusBarItem.hoverBackground": "#7295b1", | ||
"statusBar.foreground": "#e7e7e7", | ||
"activityBar.activeBackground": "#7295b1", | ||
"activityBar.activeBorder": "#e8d6e0", | ||
"statusBar.border": "#557c9b", | ||
"titleBar.border": "#557c9b" | ||
} | ||
"i18n-ally.localesPaths": "src/assets/i18n" | ||
} |
Oops, something went wrong.