2020-04-06 11:56:05 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
|
|
* This file is part of SCode-Eslint-Config which is released under BSD-3-Clause.
|
|
|
|
* See file 'LICENSE' for full license details.
|
|
|
|
* Created by Timo Hocker <timo@scode.ovh>, March 2020
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
globals: {},
|
|
|
|
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
|
|
|
|
extends: [
|
2020-04-06 13:58:55 +02:00
|
|
|
'@scode/eslint-config-es6',
|
2020-04-06 11:56:05 +02:00
|
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended'
|
|
|
|
],
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
'@typescript-eslint'
|
|
|
|
],
|
|
|
|
|
|
|
|
parserOptions: {
|
|
|
|
sourceType: 'module',
|
|
|
|
parser: 'babel-eslint'
|
|
|
|
},
|
|
|
|
|
|
|
|
rules: {}
|
|
|
|
}
|