- API relevant changes
feat
Commits, that adds or remove a new featurefix
Commits, that fixes a bug
refactor
Commits, that rewrite/restructure your code, however does not change any API behaviourperf
Commits are specialrefactor
commits, that improve performance
style
Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
... | |
"importOrder": [ | |
"^(.*).css$", | |
"^react$", | |
"<THIRD_PARTY_MODULES>", | |
"^@components/(.*)$", | |
"^@hooks/(.*)$", | |
"^[./]" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// File located in: "C:\Users\<UserNAme>\AppData\Roaming\Code\User\snippets\" | |
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
// Placeholders with the same ids are connected. | |
// Example: | |
// "Print to console": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compilerOptions": { | |
"strict": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"noImplicitAny": true | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"printWidth": 85, | |
"arrowParens": "avoid", | |
"tabWidth": 2, | |
"singleQuote": false, | |
"jsxSingleQuote": false, | |
"trailingComma": "all", | |
"bracketSpacing": true, | |
"bracketSameLine": false | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @summary Generates recommendations based on selected items and custom criteria using a point-based system. | |
* @param allItems - An array of all available items. | |
* @param selectedItems - An array of selected items. | |
* @param criteria - An array of functions to calculate points based on different criteria. | |
* @param numberOfRecommendations - The number of recommendations to generate, defaults to 3. | |
* @returns An array of recommended items. | |
* @example | |
* const allItems = [1, 2, 3, 4, 5]; | |
* const selectedItems = [1, 2]; |