mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 14:48:06 -05:00
* Add sdk-alpha package with MRZ helper * chore: add migration report script * Add lint config and MRZ tests to sdk-alpha * fix tests * fixes. wip * fixes * fix bundler tests * mrz improvements based on cr feedback * prettier * fix build errors * Document browser shim (#859) * Validate required adapters (#861) * Use sdkError for web scanner shim (#862) * Document new workspaces in AGENTS (#864) * Add client tests (#860) * Use deep merge for client config (#863) * Add config merge helper * format * Add SDK alpha CI workflow (#865) * rename * rename file * update workflow * coderabbit feedback and fixes * fix linter * fix import paths * wip fixes * updates * fix tests * formatting * update workflow * remove console mocks * rename folder and fixes * fix tests * save wip * auto format on save for all sdk package files * fixes * cr feedback * fix pipelines
21 lines
355 B
Plaintext
21 lines
355 B
Plaintext
{
|
|
"arrowParens": "avoid",
|
|
"bracketSameLine": false,
|
|
"bracketSpacing": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"endOfLine": "auto",
|
|
"printWidth": 120,
|
|
"overrides": [
|
|
{
|
|
"files": ["*.yml", "*.yaml"],
|
|
"options": {
|
|
"singleQuote": false
|
|
}
|
|
}
|
|
]
|
|
}
|