- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
29 lines
552 B
Plaintext
29 lines
552 B
Plaintext
{
|
|
"root": true,
|
|
"extends": "@ljharb",
|
|
"rules": {
|
|
"complexity": 0,
|
|
"eqeqeq": 1,
|
|
"func-style": [2, "declaration"],
|
|
"indent": [2, 2],
|
|
"max-params": [2, 3],
|
|
"max-statements-per-line": [2, { "max": 2 }],
|
|
"strict": 1,
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["example/**", "test/**"],
|
|
"globals": {
|
|
"Uint8Array": false,
|
|
"Int8Array": false,
|
|
},
|
|
"rules": {
|
|
"id-length": 0,
|
|
"max-lines-per-function": 0,
|
|
"max-params": 0,
|
|
"no-console": 0,
|
|
},
|
|
},
|
|
],
|
|
}
|