Skip to content

Commit

Permalink
Merge pull request #187 from svrooij/feature/replace-xml-parser
Browse files Browse the repository at this point in the history
Removing old `fast-xml-parser` in favor of `@rgrove/parse-xml`
  • Loading branch information
svrooij committed Feb 7, 2024
2 parents fa60a2e + bf1b350 commit 9812265
Show file tree
Hide file tree
Showing 48 changed files with 2,830 additions and 2,295 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 9812265

Please sign in to comment.