-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (20 loc) · 899 Bytes
/
index.js
File metadata and controls
21 lines (20 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const Ordering = require("./rules/ordering.js");
const ValidStorageSlot = require("./rules/valid-storage-slot.js");
const PrefixInternalFunctionsWithUnderscore = require("./rules/prefix_internal_functions_with_underscore.js");
const PrefixPrivateFunctionsWithUnderscore = require("./rules/prefix_private_functions_with_underscore.js");
const Header = require("./rules/header.js");
const VariablesNaming = require("./rules/variables-naming.js");
const CompilerVersion = require("./rules/compiler-version.js");
const NoVmRandomAddress = require("./rules/no-vm-random-address.js");
const InternalInitializers = require("./rules/internal-initializers.js");
module.exports = [
Ordering,
ValidStorageSlot,
PrefixInternalFunctionsWithUnderscore,
PrefixPrivateFunctionsWithUnderscore,
Header,
VariablesNaming,
CompilerVersion,
NoVmRandomAddress,
InternalInitializers
];