Skip to content

Commit 3a20f87

Browse files
committed
Merge branch 'main' of https://github.com/o2sdev/openselfservice into fix/reported-bugs-fixing
2 parents 88b46a8 + bf4e8f6 commit 3a20f87

File tree

97 files changed

+960
-1093
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+960
-1093
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export default {
2-
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': () => ['tsc --noEmit', 'eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
4-
};
1+
import { config } from '@o2s/lint-staged-config/base';
2+
3+
export default config;

apps/api-harmonization/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@o2s/utils.frontend": "*",
6262
"@o2s/utils.logger": "*",
6363
"compression": "^1.8.1",
64-
"cookie": "^1.0.2",
64+
"cookie": "^1.1.1",
6565
"cookie-parser": "^1.4.7",
6666
"dayjs": "^1.11.19",
6767
"helmet": "^8.1.0",
@@ -78,6 +78,7 @@
7878
"@nestjs/schematics": "^11.0.9",
7979
"@nestjs/testing": "^11.1.9",
8080
"@o2s/eslint-config": "*",
81+
"@o2s/lint-staged-config": "*",
8182
"@o2s/prettier-config": "*",
8283
"@o2s/typescript-config": "*",
8384
"@swc/cli": "^0.7.9",
@@ -86,7 +87,7 @@
8687
"@turbo/gen": "^2.6.2",
8788
"@types/compression": "^1.8.1",
8889
"@types/cookie-parser": "^1.4.10",
89-
"@types/express": "^5.0.5",
90+
"@types/express": "^5.0.6",
9091
"@types/jest": "^30.0.0",
9192
"@types/jsonwebtoken": "^9.0.10",
9293
"@types/node": "^24.10.1",

apps/docs/lint-staged.config.mjs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export default {
2-
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': () => ['tsc --noEmit', 'eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
4-
};
1+
import { config } from '@o2s/lint-staged-config/base';
2+
3+
export default config;

apps/docs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"clsx": "^2.1.1",
3131
"docusaurus-plugin-image-zoom": "^3.0.1",
3232
"docusaurus-plugin-sass": "^0.2.6",
33-
"framer-motion": "^12.23.24",
33+
"framer-motion": "^12.23.25",
3434
"prism-react-renderer": "^2.4.1",
3535
"react": "^19.2.0",
3636
"react-dom": "^19.2.0",
@@ -42,6 +42,7 @@
4242
"@docusaurus/tsconfig": "3.9.2",
4343
"@docusaurus/types": "3.9.2",
4444
"@o2s/eslint-config": "*",
45+
"@o2s/lint-staged-config": "*",
4546
"@o2s/prettier-config": "*",
4647
"@o2s/typescript-config": "*",
4748
"@tailwindcss/postcss": "^4.1.17",
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export default {
2-
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': ['eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
4-
};
1+
import { config } from '@o2s/lint-staged-config/base';
2+
3+
export default config;

apps/frontend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"build": "next build",
1010
"postbuild": "shx cp -r public .next/standalone/apps/frontend && shx cp -r .next/static .next/standalone/apps/frontend/.next/",
1111
"start": "node .next/standalone/apps/frontend/server.js",
12-
"lint": "tsc --noEmit && eslint \"{src,apps,libs,test}/**/*.{ts,tsx}\" --fix",
12+
"lint": "tsc --noEmit && eslint \"{src}/**/*.{ts,tsx}\" --fix --max-warnings=0",
1313
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,json}\"",
1414
"generate:component": "turbo gen web-component"
1515
},
@@ -66,6 +66,7 @@
6666
"devDependencies": {
6767
"@next/bundle-analyzer": "16.0.7",
6868
"@o2s/eslint-config": "*",
69+
"@o2s/lint-staged-config": "*",
6970
"@o2s/prettier-config": "*",
7071
"@o2s/typescript-config": "*",
7172
"@svgr/webpack": "^8.1.0",

lint-staged.config.mjs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export default {
2-
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': () => ['tsc --noEmit', 'eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
4-
};
1+
import { config } from '@o2s/lint-staged-config/base';
2+
3+
export default config;

0 commit comments

Comments
 (0)