-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathslippy.config.js
More file actions
30 lines (30 loc) · 879 Bytes
/
slippy.config.js
File metadata and controls
30 lines (30 loc) · 879 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
27
28
29
30
export default {
ignores: ["contracts/mock/**/*.sol"],
rules: {
"compatible-pragma": "error",
"curly": "off",
"explicit-types": "error",
"id-denylist": "error",
"imports-on-top": "error",
"max-state-vars": "error",
"named-return-params": "off",
"naming-convention": "off",
"no-console": "error",
"no-default-visibility": "error",
"no-duplicate-imports": "error",
"no-empty-blocks": "warn",
"no-global-imports": "error",
"no-restricted-syntax": "error",
"no-send": "error",
"no-tx-origin": "warn",
"no-unchecked-calls": "error",
"no-uninitialized-immutable-references": "error",
"no-unused-vars": "error",
"one-contract-per-file": "off",
"private-vars": "off",
"require-revert-reason": "error",
"sort-imports": "off",
"sort-members": "off",
"sort-modifiers": "error",
},
};