summaryrefslogtreecommitdiff
path: root/.prettierrc.cjs
diff options
context:
space:
mode:
authorPawel Zelawski <pawel.zelawski@outlook.com>2025-04-09 19:06:50 +0200
committerPawel Zelawski <pawel.zelawski@outlook.com>2025-04-09 19:06:50 +0200
commit753fcaebe44fa1b4e8e6e496fbade9508fac1dc1 (patch)
tree133fb34ececb2706813d8549ad5377693a12cea3 /.prettierrc.cjs
parentf2274466e9586c5a3b3c1f3331abf57a29f6989a (diff)
feat: Initialize project structure and dependencies
Initialize the DigiID-TS project with basic tooling and configuration. - Create package.json with project metadata and scripts. - Configure TypeScript (tsconfig.json) for strict compilation. - Set up ESLint and Prettier for code linting and formatting. - Configure Vitest for unit testing and coverage. - Add a standard Node.js .gitignore file. - Install development dependencies (TypeScript, Vite, Vitest, ESLint, Prettier). - Install core runtime dependency 'digibyte-message' from the original library's Git source.
Diffstat (limited to '.prettierrc.cjs')
-rw-r--r--.prettierrc.cjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/.prettierrc.cjs b/.prettierrc.cjs
new file mode 100644
index 0000000..30601df
--- /dev/null
+++ b/.prettierrc.cjs
@@ -0,0 +1,7 @@
+module.exports = {
+ semi: true,
+ trailingComma: 'es5',
+ singleQuote: true,
+ printWidth: 80,
+ tabWidth: 2,
+}; \ No newline at end of file