updates linter ignore pattern since linter now can support more recent syntax
This commit is contained in:
parent
fc00c01e61
commit
b1aebef900
|
|
@ -11,7 +11,7 @@
|
||||||
"ecmaVersion": 13,
|
"ecmaVersion": 13,
|
||||||
"sourceType": "module"
|
"sourceType": "module"
|
||||||
},
|
},
|
||||||
"ignorePatterns": ["**/*.min.js", "**/tools/ConfigManager.js"],
|
"ignorePatterns": ["**/*.min.js"],
|
||||||
"rules": {
|
"rules": {
|
||||||
"camelcase": 0
|
"camelcase": 0
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ import { deepMerge } from './Helper.js'
|
||||||
async function getConfig () {
|
async function getConfig () {
|
||||||
let customConfig
|
let customConfig
|
||||||
try {
|
try {
|
||||||
// eslint-disable-next-line node/no-unsupported-features/es-syntax
|
|
||||||
customConfig = await import('../../config/config.js')
|
customConfig = await import('../../config/config.js')
|
||||||
} catch (exception) {}
|
} catch (exception) {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue