Skip to content

Commit

Permalink
Merge ddbc8b3 into fa60a2e
Browse files Browse the repository at this point in the history
  • Loading branch information
svrooij committed Feb 7, 2024
2 parents fa60a2e + ddbc8b3 commit 3e0211f
Show file tree
Hide file tree
Showing 48 changed files with 2,829 additions and 2,294 deletions.
11 changes: 10 additions & 1 deletion .eslintrc.js
Expand Up @@ -13,11 +13,14 @@ module.exports = {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
// e.g. '@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/return-await': 'off',
'class-methods-use-this':'off',
'max-classes-per-file':'off',
'max-len':'off',
'no-return-await': 'off',
'linebreak-style': 'off'
'linebreak-style': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
},
overrides: [
{
Expand Down Expand Up @@ -49,6 +52,12 @@ module.exports = {
rules: {
'import/no-cycle': 'off',
}
},
{
files: ['src/models/playmode.ts', 'src/models/service-event.ts'],
rules: {
'@typescript-eslint/no-duplicate-enum-values': 'off',
}
}
]
};

0 comments on commit 3e0211f

Please sign in to comment.