-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #183 from EdgeApp/paul/multiPartnerId
Paul/multi partner
- Loading branch information
Showing
49 changed files
with
2,061 additions
and
1,430 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,15 +1,32 @@ | ||
{ | ||
"extends": [ | ||
"standard-kit/prettier", | ||
"standard-kit/prettier/node", | ||
"standard-kit/prettier/jsx", | ||
"standard-kit/prettier/node", | ||
"standard-kit/prettier/react", | ||
"standard-kit/prettier/typescript" | ||
], | ||
"globals": { | ||
"fetch": true | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"rules": { | ||
"@typescript-eslint/no-misused-promises": "off", | ||
"@typescript-eslint/no-throw-literal": "off", | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"@typescript-eslint/restrict-plus-operands": "off", | ||
"@typescript-eslint/restrict-template-expressions": "off", | ||
"@typescript-eslint/switch-exhaustiveness-check": "error" | ||
} | ||
} | ||
], | ||
"parserOptions": { | ||
"project": "tsconfig.json" | ||
}, | ||
"plugins": ["simple-import-sort"], | ||
"rules": { | ||
"simple-import-sort/sort": "error" | ||
"simple-import-sort/imports": "error" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
/cache/ | ||
/dist/ | ||
/lib/ | ||
/clientConfig.json | ||
/config.json | ||
/twitterex.txt | ||
|
||
|
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 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,11 @@ | ||
#!/bin/sh | ||
|
||
# The Edge application uses WebView components extensively. | ||
# These components need various JS files to operate, | ||
# so this script prepares those. | ||
|
||
set -e | ||
cd "$(dirname "$0")/.." | ||
|
||
# Assemble the clientConfig.json config file: | ||
node -r sucrase/register ./src/bin/configure.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
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,5 @@ | ||
import { makeConfig } from 'cleaner-config' | ||
|
||
import { asClientConfig } from '../demo/clientConfig' | ||
|
||
export const clientConfig = makeConfig(asClientConfig, './clientConfig.json') |
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
Oops, something went wrong.