-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
34 lines (33 loc) · 985 Bytes
/
eslint.config.mjs
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
import oharagroup from "eslint-config-oharagroup";
import tseslint from "typescript-eslint";
export default tseslint.config(
...oharagroup.ts,
{
name: "tvmanager/base",
languageOptions: {
parserOptions: {
projectService: {
maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 9,
},
},
},
rules: {
// Disabled for camelcase in Typescript interfaces
camelcase: "off",
// Temporarily disabled, see https://github.com/scottohara/tvmanager/issues/83
"@typescript-eslint/no-this-alias": "off",
// Disabled to allow for PublicInterface
"@typescript-eslint/no-type-alias": "off",
},
},
{
name: "tvmanager/tests",
files: ["**/*.test.ts", "**/mocks/**/*"],
rules: {
// Disable to allow Chai assertions (e.g. `expect(..).to.have.been.called`)
"@typescript-eslint/no-unused-expressions": "off",
// Disable due to circular type references in model mocks
"@typescript-eslint/no-use-before-define": "off",
},
},
);