-
-
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.
fixes missing files and config setup
- Loading branch information
Showing
46 changed files
with
15,758 additions
and
1,372 deletions.
There are no files selected for viewing
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,22 +1,22 @@ | ||
{ | ||
"files": ["README.md"], | ||
"imageSize": 100, | ||
"commit": false, | ||
"contributors": [ | ||
{ | ||
"login": "nickelsh1ts", | ||
"name": "nickelsh1ts", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/76549245?v=4", | ||
"profile": "https://www.nickelsh1ts.com", | ||
"contributions": ["code", "design", "ideas", "test"] | ||
} | ||
], | ||
"contributorsPerLine": 7, | ||
"projectName": "streamarr", | ||
"projectOwner": "nickelsh1ts", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"skipCi": true, | ||
"commitType": "docs", | ||
"commitConvention": "angular" | ||
{ | ||
"files": ["README.md"], | ||
"imageSize": 100, | ||
"commit": false, | ||
"contributors": [ | ||
{ | ||
"login": "nickelsh1ts", | ||
"name": "nickelsh1ts", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/76549245?v=4", | ||
"profile": "https://www.nickelsh1ts.com", | ||
"contributions": ["code", "design", "ideas", "test"] | ||
} | ||
], | ||
"contributorsPerLine": 7, | ||
"projectName": "streamarr", | ||
"projectOwner": "nickelsh1ts", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"skipCi": true, | ||
"commitType": "docs", | ||
"commitConvention": "angular" | ||
} |
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,23 +1,23 @@ | ||
**/.gitkeep | ||
**/.vscode | ||
.all-contributorsrc | ||
.dockerignore | ||
.editorconfig | ||
.eslintrc.js | ||
.git | ||
.gitbook.yaml | ||
.gitconfig | ||
.github | ||
.gitignore | ||
.husky | ||
.next | ||
.prettierignore | ||
.yarn | ||
Dockerfile* | ||
docker-compose.yml | ||
node_modules | ||
LICENSE | ||
public/preview.jpg | ||
stylelint.config.js | ||
cypress | ||
**/.gitkeep | ||
**/.vscode | ||
.all-contributorsrc | ||
.dockerignore | ||
.editorconfig | ||
.eslintrc.js | ||
.git | ||
.gitbook.yaml | ||
.gitconfig | ||
.github | ||
.gitignore | ||
.husky | ||
.next | ||
.prettierignore | ||
.yarn | ||
Dockerfile* | ||
docker-compose.yml | ||
node_modules | ||
LICENSE | ||
public/preview.jpg | ||
stylelint.config.js | ||
cypress | ||
next-env.d.ts |
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,14 +1,14 @@ | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,67 +1,67 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', // Specifies the ESLint parser | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin | ||
'plugin:jsx-a11y/recommended', | ||
'plugin:react/recommended', | ||
'plugin:react-hooks/recommended', | ||
'plugin:react/jsx-runtime', | ||
'prettier', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 6, | ||
sourceType: 'module', | ||
ecmaFeatures: { | ||
jsx: true, | ||
}, | ||
}, | ||
rules: { | ||
'@typescript-eslint/camelcase': 0, | ||
'@typescript-eslint/no-use-before-define': 0, | ||
'jsx-a11y/no-noninteractive-tabindex': 0, | ||
'arrow-parens': 'off', | ||
'jsx-a11y/anchor-is-valid': 'off', | ||
'react-hooks/rules-of-hooks': 'error', | ||
'react-hooks/exhaustive-deps': 'warn', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'formatjs/no-offset': 'error', | ||
'no-unused-vars': 'off', | ||
'@typescript-eslint/no-unused-vars': ['error'], | ||
'@typescript-eslint/array-type': ['error', { default: 'array' }], | ||
'jsx-a11y/no-onchange': 'off', | ||
'@typescript-eslint/consistent-type-imports': [ | ||
'error', | ||
{ | ||
prefer: 'type-imports', | ||
}, | ||
], | ||
'no-relative-import-paths/no-relative-import-paths': [ | ||
'error', | ||
{ allowSameFolder: true }, | ||
], | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['src/**/*.tsx'], | ||
rules: { | ||
'react/prop-types': 'off', | ||
}, | ||
}, | ||
], | ||
plugins: ['jsx-a11y', 'react-hooks', 'formatjs', 'no-relative-import-paths'], | ||
settings: { | ||
react: { | ||
pragma: 'React', | ||
version: '18.2', | ||
}, | ||
}, | ||
env: { | ||
browser: true, | ||
node: true, | ||
jest: true, | ||
es6: true, | ||
}, | ||
reportUnusedDisableDirectives: true, | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', // Specifies the ESLint parser | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin | ||
'plugin:jsx-a11y/recommended', | ||
'plugin:react/recommended', | ||
'plugin:react-hooks/recommended', | ||
'plugin:react/jsx-runtime', | ||
'prettier', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 6, | ||
sourceType: 'module', | ||
ecmaFeatures: { | ||
jsx: true, | ||
}, | ||
}, | ||
rules: { | ||
'@typescript-eslint/camelcase': 0, | ||
'@typescript-eslint/no-use-before-define': 0, | ||
'jsx-a11y/no-noninteractive-tabindex': 0, | ||
'arrow-parens': 'off', | ||
'jsx-a11y/anchor-is-valid': 'off', | ||
'react-hooks/rules-of-hooks': 'error', | ||
'react-hooks/exhaustive-deps': 'warn', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'formatjs/no-offset': 'error', | ||
'no-unused-vars': 'off', | ||
'@typescript-eslint/no-unused-vars': ['error'], | ||
'@typescript-eslint/array-type': ['error', { default: 'array' }], | ||
'jsx-a11y/no-onchange': 'off', | ||
'@typescript-eslint/consistent-type-imports': [ | ||
'error', | ||
{ | ||
prefer: 'type-imports', | ||
}, | ||
], | ||
'no-relative-import-paths/no-relative-import-paths': [ | ||
'error', | ||
{ allowSameFolder: true }, | ||
], | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['src/**/*.tsx'], | ||
rules: { | ||
'react/prop-types': 'off', | ||
}, | ||
}, | ||
], | ||
plugins: ['jsx-a11y', 'react-hooks', 'formatjs', 'no-relative-import-paths'], | ||
settings: { | ||
react: { | ||
pragma: 'React', | ||
version: '18.2', | ||
}, | ||
}, | ||
env: { | ||
browser: true, | ||
node: true, | ||
jest: true, | ||
es6: true, | ||
}, | ||
reportUnusedDisableDirectives: 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Generated files which we would not like to format | ||
.next/ | ||
dist/ | ||
config/ | ||
|
||
# assets | ||
src/assets/ | ||
public/* | ||
# Generated files which we would not like to format | ||
.next/ | ||
dist/ | ||
config/ | ||
|
||
# assets | ||
src/assets/ | ||
public/* | ||
!public/*.html |
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,4 +1,4 @@ | ||
module.exports = { | ||
singleQuote: true, | ||
trailingComma: 'es5', | ||
module.exports = { | ||
singleQuote: true, | ||
trailingComma: 'es5', | ||
}; |
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,13 +1,13 @@ | ||
import { defineConfig } from 'cypress'; | ||
|
||
export default defineConfig({ | ||
projectId: '', | ||
e2e: { | ||
baseUrl: 'http://localhost:3000', | ||
}, | ||
env: {}, | ||
retries: { | ||
runMode: 2, | ||
openMode: 0, | ||
}, | ||
}); | ||
import { defineConfig } from 'cypress'; | ||
|
||
export default defineConfig({ | ||
projectId: 'ou397k', | ||
e2e: { | ||
baseUrl: 'http://localhost:3000', | ||
}, | ||
env: {}, | ||
retries: { | ||
runMode: 2, | ||
openMode: 0, | ||
}, | ||
}); |
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,11 +1,11 @@ | ||
{ | ||
"clientId": "6919275e-142a-48d8-be6b-93594cbd4626", | ||
"main": { | ||
"apiKey": "testkey", | ||
"applicationTitle": "Streamarr", | ||
"applicationUrl": "", | ||
"region": "", | ||
"originalLanguage": "", | ||
"locale": "en" | ||
} | ||
{ | ||
"clientId": "6919275e-142a-48d8-be6b-93594cbd4626", | ||
"main": { | ||
"apiKey": "testkey", | ||
"applicationTitle": "Streamarr", | ||
"applicationUrl": "", | ||
"region": "", | ||
"originalLanguage": "", | ||
"locale": "en" | ||
} | ||
} |
Oops, something went wrong.