forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jscsrc
More file actions
31 lines (31 loc) · 610 Bytes
/
.jscsrc
File metadata and controls
31 lines (31 loc) · 610 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
31
{
"preset": "node-style-guide",
"requireTrailingComma": null,
"requireCapitalizedComments": null,
"requireSpaceAfterKeywords": [
"if",
"else",
"for",
"while",
"do",
"switch",
"case",
"return",
"try",
"typeof"
],
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"maximumLineLength": {
"value": 80,
"allowUrlComments": true
},
"excludeFiles": [
"**/src/*/**/*",
"**/system-test/*/**/*",
"**/test/**/gapic-*.js",
"**/test/*/**/*",
"**/node_modules/",
"**/.coverage/**/*.js",
"**/smoke-test/**/*.js",
]
}