-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
58 lines (58 loc) · 1.56 KB
/
.eslintrc.json
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
54
55
56
57
58
// Inspired by: https://github.com/CosmWasm/cosmwasm/pull/118/files
{
"env": {
"es6": true
},
"globals": {
// testing
"describe": false,
"it": false,
"expect": false,
// assemblyscript runtime
"u64": false,
"i64": false,
"unreachable": false,
"unmanaged": false,
"idof": false,
"changetype": false,
"memory": false,
"load": false,
"store": false,
"__alloc": false,
"__release": false,
"__retain": false
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": ["@typescript-eslint", "simple-import-sort"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"rules": {
"curly": ["warn", "multi-line", "consistent"],
"no-console": ["warn", { "allow": ["error", "info", "warn"] }],
"no-param-reassign": "warn",
"no-shadow": "warn",
"prefer-const": "warn",
"spaced-comment": [
"warn",
"always",
{ "line": { "markers": ["/ <reference"] } }
],
"simple-import-sort/imports": "warn",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/explicit-function-return-type": [
"warn",
{ "allowExpressions": true }
],
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
],
"@typescript-eslint/no-use-before-define": "warn"
},
"overrides": []
}