Skip to content

Commit

Permalink
Merge branch 'dev' into dependabot/npm_and_yarn/frontend/adobe/css-to…
Browse files Browse the repository at this point in the history
…ols-4.3.2
  • Loading branch information
smalho01 authored Dec 1, 2023
2 parents f3bcb8f + bf86746 commit cbb32b7
Show file tree
Hide file tree
Showing 29 changed files with 364 additions and 514 deletions.
4 changes: 3 additions & 1 deletion backend/.prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
dist
dist
node_modules
package-lock.json
10 changes: 9 additions & 1 deletion backend/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@
"endOfLine": "auto",
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true
"singleQuote": true,
"overrides": [
{
"files": "*.json",
"options": {
"singleQuote": false
}
}
]
}
8 changes: 4 additions & 4 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"dependencies": {
"@types/node": "^16.18.2",
"axios": "^1.2.6",
"axios": "^1.6.0",
"body-parser": "^1.20.1",
"body-parser-xml": "^2.0.3",
"cors": "^2.8.5",
Expand Down Expand Up @@ -51,9 +51,9 @@
"start": "ts-node-dev src/server.ts",
"test": "mocha",
"build": "tsc",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\""
"lint": "tsc && eslint \"**/*.{js,ts,jsx,tsx}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts,jsx,tsx}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts,jsx,tsx,json}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,jsx,tsx,json}\""
}
}
4 changes: 3 additions & 1 deletion frontend/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
dist
build
build
node_modules
package-lock.json
12 changes: 10 additions & 2 deletions frontend/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@
"endOfLine": "auto",
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true
}
"singleQuote": true,
"overrides": [
{
"files": "*.json",
"options": {
"singleQuote": false
}
}
]
}
Loading

0 comments on commit cbb32b7

Please sign in to comment.