-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
24 lines (23 loc) · 1.29 KB
/
index.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
/* eslint-disable @typescript-eslint/no-var-requires */
const PrefixInternalFunctionsWithUnderscore = require('./rules/prefixInternalFunctionsWithUnderscore.js');
const PrefixPrivateFunctionsWithUnderscore = require('./rules/prefixPrivateFunctionsWithUnderscore.js');
const PrefixStorageVariablesWithSUnderscore = require('./rules/prefixStorageVariablesWithSUnderscore.js');
const PrefixImmutableVariablesWithI = require('./rules/prefixImmutableVariablesWithI');
const PrefixInterfacesWithI = require('./rules/prefixInterfacesWithI');
const AllCapsConstantStorageVariables = require('./rules/allCapsConstantStorageVariables.js');
const NoHardhatImports = require('./rules/noHardhatImports.js');
const InheritedConstructorArgsNotInContractDefinition = require('./rules/inheritedConstructorArgsNotInContractDefinition.js');
const NoBlockSingleIfReverts = require('./rules/noBlockSingleIfReverts.js');
const ExplicitReturns = require('./rules/explicitReturns.js');
module.exports = [
PrefixInternalFunctionsWithUnderscore,
PrefixPrivateFunctionsWithUnderscore,
PrefixStorageVariablesWithSUnderscore,
PrefixImmutableVariablesWithI,
PrefixInterfacesWithI,
AllCapsConstantStorageVariables,
NoHardhatImports,
InheritedConstructorArgsNotInContractDefinition,
NoBlockSingleIfReverts,
ExplicitReturns,
];