-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve "rename sensio to anagolay" and various other fixes
- Loading branch information
Showing
633 changed files
with
25,970 additions
and
25,303 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 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,30 @@ | ||
const base = require('./common/dev/config/eslint.cjs') | ||
|
||
module.exports = { | ||
...base, | ||
ignorePatterns: [ | ||
'.eslintrc.js', | ||
'.vscode/**', | ||
'**/build/*', | ||
'**/coverage/*', | ||
'**/node_modules/*', | ||
], | ||
parserOptions: { | ||
...base.parserOptions, | ||
createDefaultProgram: true, | ||
project: [ | ||
'./tsconfig.eslint.json', | ||
// "./sdk/**/tsconfig.json", | ||
// "./operations/**/tsconfig.json", | ||
// "./rules/**/tsconfig.json", | ||
// "./common/**/tsconfig.json" | ||
], | ||
}, | ||
rules: { | ||
...base.rules, | ||
// add override for any (a metric ton of them, initial conversion) | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
// this seems very broken atm, false positives | ||
'@typescript-eslint/unbound-method': '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,39 @@ | ||
const ops = { | ||
'@anagolay/op-create-qrcode': 'workspace:*', | ||
'@anagolay/op-enc-hex': 'workspace:*', | ||
'@anagolay/op-file': 'workspace:*', | ||
'@anagolay/op-identity': 'workspace:*', | ||
'@anagolay/op-json-dec': 'workspace:*', | ||
'@anagolay/op-json-enc': 'workspace:*', | ||
'@anagolay/op-match-all': 'workspace:*', | ||
'@anagolay/op-match-none': 'workspace:*', | ||
'@anagolay/op-multihash': 'workspace:*', | ||
'@anagolay/op-split': 'workspace:*', | ||
'@anagolay/op-cid': 'workspace:*', | ||
'@anagolay/op-image-metadata': 'workspace:*', | ||
'@anagolay/op-image-phash': 'workspace:*', | ||
'@anagolay/op-image-metadata-hash': 'workspace:*', | ||
'@anagolay/op-image-raw-pixels': 'workspace:*', | ||
'@anagolay/op-take-photo-and-upload-qrcode': 'workspace:*', | ||
'@anagolay/op-create-ownership-claims': 'workspace:*', | ||
'@anagolay/op-image-raw-pixels-hash': 'workspace:*', | ||
'@anagolay/op-user-sign-claims': 'workspace:*', | ||
'@anagolay/op-save-statements': 'workspace:*', | ||
} | ||
|
||
function readPackage(pkg) { | ||
// this is how we can add the all operations to the our other packages. be careful to add them to packages if needed, not they are only liked | ||
// if (!pkg.name.startsWith('@anagolay/op-')) { | ||
// pkg.devDependencies = { | ||
// ...pkg.devDependencies, | ||
// ...ops, | ||
// } | ||
// } | ||
return pkg | ||
} | ||
|
||
module.exports = { | ||
hooks: { | ||
readPackage, | ||
}, | ||
} |
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 = { | ||
"semi": false, | ||
"trailingComma": "all", | ||
"singleQuote": 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
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 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
Oops, something went wrong.