-
Notifications
You must be signed in to change notification settings - Fork 55
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 #249 from berendsliedrecht/js-module-installation
feat: switched to pnpm and added react native example app
- Loading branch information
Showing
121 changed files
with
13,905 additions
and
11,442 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
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,71 @@ | ||
root: true | ||
|
||
parser: '@typescript-eslint/parser' | ||
|
||
plugins: | ||
- '@typescript-eslint' | ||
- prettier | ||
- import | ||
|
||
parserOptions: | ||
tsconfigRootDir: . | ||
project: | ||
- './tsconfig.eslint.json' | ||
- './packages/**/tsconfig.json' | ||
|
||
extends: | ||
- eslint:recommended | ||
- plugin:@typescript-eslint/strict | ||
- plugin:@typescript-eslint/stylistic | ||
- plugin:prettier/recommended | ||
|
||
ignorePatterns: | ||
- '**/build/**' | ||
- '**/node_modules/**' | ||
|
||
rules: | ||
'@typescript-eslint/consistent-type-definitions': off | ||
'@typescript-eslint/no-extraneous-class': off | ||
'@typescript-eslint/no-use-before-define': | ||
- error | ||
- functions: false | ||
classes: false | ||
variables: true | ||
'@typescript-eslint/explicit-member-accessibility': error | ||
no-console: error | ||
'@typescript-eslint/consistent-type-imports': error | ||
import/newline-after-import: | ||
- error | ||
- count: 1 | ||
import/order: | ||
- error | ||
- groups: | ||
- type | ||
- - builtin | ||
- external | ||
- parent | ||
- sibling | ||
- index | ||
alphabetize: | ||
order: asc | ||
newlines-between: always | ||
'@typescript-eslint/no-non-null-assertion': error | ||
import/no-extraneous-dependencies: | ||
- error | ||
- devDependencies: false | ||
|
||
overrides: | ||
- files: '**/tests/**' | ||
env: | ||
jest: true | ||
node: true | ||
|
||
- files: | ||
- '**/scripts/**' | ||
- '**/*.config.js' | ||
env: | ||
node: true | ||
rules: | ||
no-undef: off | ||
no-console: off | ||
'@typescript-eslint/no-var-requires': off |
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 @@ | ||
node-linker=hoisted |
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,6 @@ | ||
{ | ||
"printWidth": 120, | ||
"semi": false, | ||
"singleQuote": true | ||
"singleQuote": true, | ||
"trailingComma": "none" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
wrappers/javascript/anoncreds-react-native/tsconfig.build.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.