Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rossbulat committed Nov 26, 2024
2 parents 32b5553 + 441caf7 commit d3e4b5f
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 51 deletions.
13 changes: 7 additions & 6 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
**/yarn.lock
**/package-lock.json
**/.eslintrc.js
**/tsconfig.json
dist
src/img/**/*
public/lottie/player.js
CHANGELOG.md
**/dist

.yarn
.licenserc.json
.licenserc.json
CHANGELOG.md

packages/app/src/img/**/*
packages/app/public/lottie/player.js
9 changes: 0 additions & 9 deletions .prettierrc.json

This file was deleted.

19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"reset": "npm run clear && rm -rf node_modules yarn.lock && yarn",
"test": "npm run test --workspaces --if-present"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@ledgerhq/logs": "^6.12.0",
"@types/chroma-js": "^2.4.4",
Expand Down Expand Up @@ -47,5 +44,19 @@
"i18next": "^24.0.0",
"react-i18next": "^15.1.1"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"prettier": {
"arrowParens": "always",
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"endOfLine": "auto",
"plugins": [
"prettier-plugin-organize-imports"
]
},
"workspaces": [
"packages/*"
]
}
6 changes: 2 additions & 4 deletions packages/consts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
"esModuleInterop": false,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noEmit": true
},
"include": [
"src"
]
"include": ["src"]
}
4 changes: 1 addition & 3 deletions packages/locales/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@
"noEmit": true,
"types": ["vite/client"]
},
"include": [
"src"
]
"include": ["src"]
}
6 changes: 2 additions & 4 deletions packages/plugin-staking-api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"noEmit": true,
"noEmit": true
},
"include": [
"src"
]
"include": ["src"]
}
7 changes: 2 additions & 5 deletions packages/ui-buttons/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"noEmit": true,
"noEmit": true
},
"include": [
"../../env.d.ts",
"src"
]
"include": ["../../env.d.ts", "src"]
}
7 changes: 2 additions & 5 deletions packages/ui-structure/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"noEmit": true,
"noEmit": true
},
"include": [
"../../env.d.ts",
"src"
]
"include": ["../../env.d.ts", "src"]
}
15 changes: 4 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,8 @@
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"strictPropertyInitialization": false,
"noUnusedLocals": true,
"noUnusedLocals": true
},
"include": [
"packages/**/*",
"env.d.ts"
],
"exclude": [
"**/*/node_modules",
"**/*/dist",
"**/*/lottie"
],
}
"include": ["packages/**/*", "env.d.ts"],
"exclude": ["**/*/node_modules", "**/*/dist", "**/*/lottie"]
}

0 comments on commit d3e4b5f

Please sign in to comment.