-
Notifications
You must be signed in to change notification settings - Fork 5
/
eslintrc.js
53 lines (51 loc) · 1.66 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Copyright Clave - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
*/
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint/eslint-plugin"],
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: [".eslintrc.js", "**/apps/wallet-mobile-zksync/shim.ts"],
rules: {
"@typescript-eslint/array-type": ["error", { default: "generic" }],
"@typescript-eslint/explicit-module-boundary-types": "warn",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-function-return-type": "warn",
"@typescript-eslint/ban-ts-comment": [
"warn",
{
"ts-expect-error": "allow-with-description",
},
],
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/naming-convention": [
"error",
{
selector: ["variable", "function"],
format: ["camelCase", "UPPER_CASE", "PascalCase"],
leadingUnderscore: "allow",
},
],
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/restrict-plus-operands": "error",
"@typescript-eslint/no-require-imports": "warn",
"@typescript-eslint/switch-exhaustiveness-check": "error",
"@typescript-eslint/promise-function-async": "warn",
"@typescript-eslint/consistent-type-imports": "warn",
// Extension Rules
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-throw-literal": "off",
"@typescript-eslint/no-throw-literal": "error",
},
};