-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
41 lines (39 loc) · 1.34 KB
/
eslint.config.js
File metadata and controls
41 lines (39 loc) · 1.34 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import prettier from "eslint-plugin-prettier/recommended";
import iTwinEslintPlugin from "@itwin/eslint-plugin";
import { defineConfig, globalIgnores } from "eslint/config";
export default tseslint.config(
defineConfig([globalIgnores(["dist/*", "tmp/*"])]),
eslint.configs.recommended,
tseslint.configs.recommended,
iTwinEslintPlugin.configs.iTwinjsRecommendedConfig,
{
rules: {
"@typescript-eslint/explicit-function-return-type": [
"warn",
{
allowedNames: ["tests", "sharedQuickUseCasesParallel"],
},
],
"prettier/prettier": ["warn", { endOfLine: "auto" }],
},
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: "./tsconfig.eslint.json",
},
},
},
{
files: ["integration-tests/**/*", "mocked-integration-tests/**/*"],
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
},
},
prettier,
);