18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
/*
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
* This file is part of Requestor which is released under BSD-3-Clause.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@sapphirecode.ovh>, March 2020
|
|
*/
|
|
|
|
module.exports = {
|
|
env: {
|
|
commonjs: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'@sapphirecode/eslint-config-ts'
|
|
]
|
|
}
|