@eternxsmicroservice/core 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/er.name ADDED
@@ -0,0 +1,30 @@
1
+ diff.astextplain.textconv=astextplain
2
+ filter.lfs.clean=git-lfs clean -- %f
3
+ filter.lfs.smudge=git-lfs smudge -- %f
4
+ filter.lfs.process=git-lfs filter-process
5
+ filter.lfs.required=true
6
+ http.sslbackend=openssl
7
+ http.sslcainfo=C:/Program Files/Git/mingw64/etc/ssl/certs/ca-bundle.crt
8
+ core.autocrlf=true
9
+ core.fscache=true
10
+ core.symlinks=false
11
+ pull.rebase=false
12
+ credential.helper=manager
13
+ credential.https://dev.azure.com.usehttppath=true
14
+ init.defaultbranch=master
15
+ user.email=mart.robin@ut.ee
16
+ user.name=martrobin-inf
17
+ filter.lfs.clean=git-lfs clean -- %f
18
+ filter.lfs.smudge=git-lfs smudge -- %f
19
+ filter.lfs.process=git-lfs filter-process
20
+ filter.lfs.required=true
21
+ core.repositoryformatversion=0
22
+ core.filemode=false
23
+ core.bare=false
24
+ core.logallrefupdates=true
25
+ core.symlinks=false
26
+ core.ignorecase=true
27
+ remote.origin.url=https://github.com/eternxsMicroservice/core.git
28
+ remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
29
+ branch.main.remote=origin
30
+ branch.main.merge=refs/heads/main
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@eternxsmicroservice/core",
3
+ "version": "1.0.0",
4
+ "description": "Core utilities and shared setup",
5
+ "type": "commonjs",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "license": "ISC",
10
+ "author": {
11
+ "name": "Mart",
12
+ "email": "mart.robin420@gmail.com"
13
+ },
14
+ "peerDependencies": {
15
+ "prettier": "^3.0.0"
16
+ },
17
+ "dependencies": {
18
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2"
19
+ },
20
+ "exports": {
21
+ "prettier": "./src/prettier.config.mjs"
22
+ },
23
+ "devDependencies": {
24
+ "prettier": "^3.7.4"
25
+ }
26
+ }
@@ -0,0 +1,20 @@
1
+ /** @type {import("prettier").Config} */
2
+ export default {
3
+ trailingComma: "none",
4
+ tabWidth: 4,
5
+ useTabs: true,
6
+ semi: false,
7
+ singleQuote: true,
8
+ jsxSingleQuote: true,
9
+ arrowParens: "avoid",
10
+ importOrderSeparation: true,
11
+ importOrderSortSpecifiers: true,
12
+ importOrderCaseInsensitive: true,
13
+ importOrderParserPlugins: [
14
+ "classProperties",
15
+ "decorators-legacy",
16
+ "typescript"
17
+ ],
18
+ importOrder: ["<THIRD_PARTY_MODULES>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
19
+ plugins: ["@trivago/prettier-plugin-sort-imports"]
20
+ }