-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.ci.json
More file actions
52 lines (52 loc) · 1.19 KB
/
example.ci.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"workspaceFolders": [
"."
],
"settings": {
"libraryPaths": [
"./path/to/my/library"
],
"ignoreGlobs": [
"**/node_modules/**",
"**/.git/**",
"**/dist/**"
],
"knownGlobals": [
"love"
],
"bannedSymbols": {},
"maxFileSizeMB": 4,
"parserMaxErrors": 50,
"diagUndefinedGlobals": true,
"diagImplicitGlobals": true,
"diagUnusedLocal": true,
"diagUnusedFunction": true,
"diagUnusedParameter": true,
"diagUnusedLoopVar": true,
"diagShadowing": true,
"diagUnreachableCode": true,
"diagAmbiguousReturns": true,
"diagDeprecated": true,
"diagDuplicateField": true,
"diagUnbalancedAssignment": true,
"diagDuplicateLocal": true,
"diagSelfAssignment": true,
"diagEmptyBlock": true,
"diagFormatString": true,
"diagTypeCheck": false,
"diagRedundantParameter": true,
"diagRedundantValue": true,
"diagRedundantReturn": true,
"diagLoopVarMutation": true,
"diagIncorrectVararg": true,
"diagShadowingLoopVar": true,
"diagConstantCondition": true,
"diagUnreachableElse": true,
"diagUsedIgnoredVar": true,
"diagMinVariableNameLength": 0,
"diagIgnoredVariableNames": [
"_", "i", "j", "x", "y", "z", "w", "id", "to"
],
"featureFiveM": false
}
}