Skip to content

Commit

Permalink
feat(CB2-12695): Implement types definition to smc-prohibition (#22)
Browse files Browse the repository at this point in the history
* feat(CB2-12695): implement types definition to smc-prohibition

* feat(CB2-12695): fix vulns

* feat(CB2-12695): remove lint/ts overrides

* feat(CB2-12695): update eslint rules

* feat(CB2-12695): docblocks and formatting

* feat(CB2-12785): implement common/cvs-packages test type ids into smc-prohibition

* feat(CB2-12785): test type helper method

* feat(CB2-12695): docblocks types

* feat(CB2-12695): docblocks refactor
  • Loading branch information
m-mullen authored Jul 22, 2024
1 parent 7dae2bf commit d4fa587
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 102 deletions.
22 changes: 21 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
{
"extends": ["@dvsa/eslint-config-ts", "prettier"]
"extends": ["@dvsa/eslint-config-ts", "prettier"],
"settings": {
"import/resolver": {
"typescript": {
"alwaysTryTypes": true
}
}
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"max-len":["error", {
"code": 150,
"ignoreComments": true
}],
"@typescript-eslint/no-unsafe-enum-comparison": "off"
}
}
Loading

0 comments on commit d4fa587

Please sign in to comment.