- Updated linting configuration to use 'eslint --fix' for automatic code formatting on staged files. - Removed explicit version specification for pnpm in GitHub workflows to allow for flexibility in version management. - Enhanced opportunity resolution service with locking mechanism to prevent race conditions during opportunity creation. - Simplified Salesforce account service by querying the auto-generated account number instead of generating it manually. - Improved cancellation date handling in internet cancellation service to avoid timezone issues.
5 lines
129 B
JSON
5 lines
129 B
JSON
{
|
|
"*.{ts,tsx,js,jsx}": ["eslint --fix --no-warn-ignored", "prettier -w"],
|
|
"*.{json,md,yml,yaml,css,scss}": ["prettier -w"]
|
|
}
|