forked from matrix-org/thirdroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
26 lines (26 loc) · 708 Bytes
/
Copy path.eslintrc
File metadata and controls
26 lines (26 loc) · 708 Bytes
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
{
"plugins": ["matrix-org"],
"extends": ["plugin:matrix-org/typescript", "plugin:matrix-org/react", "plugin:storybook/recommended", "prettier"],
"parserOptions": {
"project": ["./tsconfig.json", "./packages/*/tsconfig.json"]
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"new-cap": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": ["variable", "function"],
"modifiers": ["private"],
"format": ["camelCase"],
"leadingUnderscore": "allow"
}
],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off"
}
}