This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
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 #549 from ArkEcosystem/develop
release: 1.8.0
- Loading branch information
Showing
265 changed files
with
26,472 additions
and
17,010 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
coverage |
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,59 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "./tsconfig.eslint.json" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint", | ||
"prettier", | ||
"simple-import-sort", | ||
"html", | ||
"unused-imports" | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
"prettier/@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/prefer-string-starts-ends-with": "off", | ||
"@typescript-eslint/no-this-alias": "off", | ||
"@typescript-eslint/await-thenable": "off", | ||
"@typescript-eslint/ban-ts-ignore": "off", | ||
"@typescript-eslint/camelcase": "off", | ||
"@typescript-eslint/explicit-function-return-type": "off", | ||
"@typescript-eslint/explicit-member-accessibility": ["off"], | ||
"@typescript-eslint/interface-name-prefix": "off", | ||
"@typescript-eslint/member-ordering": ["error"], | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/no-empty-interface": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"@typescript-eslint/no-misused-promises": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-non-null-assertion": "off", | ||
"@typescript-eslint/no-unnecessary-condition": "off", | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"@typescript-eslint/no-var-requires": "off", | ||
"@typescript-eslint/prefer-regexp-exec": "off", | ||
"@typescript-eslint/require-await": "off", | ||
"@typescript-eslint/unbound-method": "off", | ||
"no-async-promise-executor": "off", | ||
"no-empty": "off", | ||
"no-inferrable-types": "off", | ||
"no-prototype-builtins": "off", | ||
"prefer-const": [ | ||
"error", | ||
{ | ||
"destructuring": "all" | ||
} | ||
], | ||
"prettier/prettier": "error", | ||
"require-atomic-updates": "off", | ||
"simple-import-sort/sort": "error", | ||
"unused-imports/no-unused-imports-ts": "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
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,5 +1,4 @@ | ||
{ | ||
"*.ts": ["tslint -c tslint.json --fix", "prettier --write"], | ||
"src/**/*.ts": ["ng-lint-staged lint --fix --"], | ||
"*.ts": ["prettier --write", "eslint --fix"], | ||
"*.{css,pcss,scss,html,json,md,js}": ["prettier --write"] | ||
} |
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 @@ | ||
coverage |
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 @@ | ||
module.exports = { | ||
stories: ["../src/**/*.stories.[tj]s"], | ||
webpackFinal: config => { | ||
config.module.rules.push({ | ||
test: /\.(scss|pcss)$/, | ||
loader: "postcss-loader", | ||
options: { | ||
ident: "postcss", | ||
syntax: "postcss-scss", | ||
plugins: () => [ | ||
require("postcss-import"), | ||
require("tailwindcss"), | ||
require("postcss-nested"), | ||
require("autoprefixer"), | ||
], | ||
}, | ||
}); | ||
|
||
return config; | ||
}, | ||
}; |
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,25 @@ | ||
import { addDecorator } from "@storybook/angular"; | ||
import { IonicModule } from "@ionic/angular"; | ||
import { moduleMetadata } from "@storybook/angular"; | ||
import { TranslateModule, TranslateLoader } from "@ngx-translate/core"; | ||
import { of } from "rxjs"; | ||
// @ts-ignore | ||
import enLocale from "../src/assets/i18n/en.json"; | ||
|
||
class CustomLoader implements TranslateLoader { | ||
getTranslation(lang: string) { | ||
return of(enLocale); | ||
} | ||
} | ||
|
||
addDecorator( | ||
moduleMetadata({ | ||
imports: [ | ||
IonicModule.forRoot(), | ||
TranslateModule.forRoot({ | ||
loader: { provide: TranslateLoader, useClass: CustomLoader }, | ||
defaultLanguage: "en", | ||
}), | ||
], | ||
}), | ||
); |
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,8 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"resolveJsonModule": true | ||
}, | ||
"exclude": ["../src/test.ts", "../src/**/*.spec.ts"], | ||
"include": ["../src/**/*"] | ||
} |
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @luciorubeens @alexbarnsley | ||
* @luciorubeens @clucasalcantara |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget id="io.ark.wallet.mobile" version="1.7.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget id="io.ark.wallet.mobile" version="1.8.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>Ark Mobile</name> | ||
<description>ARK</description> | ||
<author email="[email protected]" href="http://ark.io/">Ark Ecosystem</author> | ||
|
@@ -29,9 +29,11 @@ | |
<preference name="KeyboardResizeMode" value="native" /> | ||
<preference name="Orientation" value="portrait" /> | ||
<preference name="target-device" value="handset" /> | ||
<preference name="DisableDeploy" value="true" /> | ||
<platform name="android"> | ||
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<edit-config file="AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<application android:networkSecurityConfig="@xml/network_security_config" /> | ||
<application android:usesCleartextTraffic="true" /> | ||
</edit-config> | ||
<edit-config file="AndroidManifest.xml" mode="merge" target="/manifest/application/activity" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<activity android:windowSoftInputMode="adjustPan" /> | ||
|
@@ -123,7 +125,6 @@ | |
<plugin name="cordova-plugin-qrscanner" spec="^3.0.1" /> | ||
<plugin name="cordova-plugin-inappbrowser" spec="^3.1.0" /> | ||
<plugin name="cordova-plugin-x-socialsharing" spec="^5.6.2" /> | ||
<plugin name="cordova-plugin-local-notification" spec="^0.9.0-beta.2" /> | ||
<plugin name="cordova-sqlite-storage" spec="3.4.0" /> | ||
<plugin name="cordova-plugin-network-information" spec="^2.0.2" /> | ||
<plugin name="cordova-plugin-screen-orientation" spec="^3.0.2" /> | ||
|
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 |
---|---|---|
|
@@ -2,5 +2,7 @@ | |
"name": "ark-ionic", | ||
"integrations": { | ||
"cordova": {} | ||
} | ||
}, | ||
"type": "angular", | ||
"id": "efb289f2" | ||
} |
Oops, something went wrong.