forked from EpicGamesExt/PixelStreamingInfrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
28 lines (27 loc) · 781 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright Epic Games, Inc. All Rights Reserved.
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: { project: './tsconfig.esm.json' },
plugins: [
'@typescript-eslint',
'eslint-plugin-tsdoc',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended-type-checked',
"plugin:prettier/recommended",
],
rules: {
"tsdoc/syntax": "warn",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
};