Skip to content

Commit

Permalink
Merge dev for v1.0.1 release (#901)
Browse files Browse the repository at this point in the history
* Chore: #895 bump dependencies UI (#896)
* Chore: #895 bump dependencies server (#897)
  • Loading branch information
chriswilty committed Apr 15, 2024
2 parents cd7e402 + 8012030 commit d920f7a
Show file tree
Hide file tree
Showing 36 changed files with 3,253 additions and 1,757 deletions.
27 changes: 17 additions & 10 deletions backend/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = {
'plugin:@typescript-eslint/strict-type-checked',
'plugin:import/recommended',
'plugin:import/typescript',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
Expand All @@ -26,22 +27,14 @@ module.exports = {
rules: {
eqeqeq: 'error',
'func-style': ['error', 'declaration'],
'object-shorthand': 'error',
'no-restricted-imports': [
'error',
{
patterns: ['../*'],
},
],
'object-shorthand': 'error',
'prefer-template': 'error',

'@typescript-eslint/no-misused-promises': [
'error',
{
checksVoidReturn: false,
},
],
'@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
'import/order': [
'error',
{
Expand All @@ -62,9 +55,23 @@ module.exports = {
],
},
],
'no-mixed-spaces-and-tabs': 0, // disable rule
'jest/unbound-method': ['error', { ignoreStatic: true }],
'@typescript-eslint/consistent-type-definitions': 0, // disable rule. Eventually use below rule to enforce type over interface
// '@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'@typescript-eslint/no-misused-promises': [
'error',
{
checksVoidReturn: false,
},
],
'@typescript-eslint/restrict-template-expressions': [
'error',
{
allowNumber: true,
allowBoolean: true,
},
],
'@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
},
overrides: [
{
Expand Down
Loading

0 comments on commit d920f7a

Please sign in to comment.