updates linter ignore pattern since linter now can support more recent syntax

This commit is contained in:
Lars Berning 2022-01-31 19:42:48 +01:00
parent fc00c01e61
commit b1aebef900
No known key found for this signature in database
GPG Key ID: 028E73C9E1D8A0B3
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,7 @@
"ecmaVersion": 13,
"sourceType": "module"
},
"ignorePatterns": ["**/*.min.js", "**/tools/ConfigManager.js"],
"ignorePatterns": ["**/*.min.js"],
"rules": {
"camelcase": 0
}

View File

@ -10,7 +10,6 @@ import { deepMerge } from './Helper.js'
async function getConfig () {
let customConfig
try {
// eslint-disable-next-line node/no-unsupported-features/es-syntax
customConfig = await import('../../config/config.js')
} catch (exception) {}