9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
parser: '@typescript-eslint/parser',
|
||
|
|
plugins: ['@typescript-eslint'],
|
||
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended']
|
||
|
|
};
|