blob: 211744d0dc8df8fc9bbea4aa0e28c2033beb1cbd [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001{
2 "preset": "google",
3 "disallowSpacesInAnonymousFunctionExpression": null,
4 "validateLineBreaks": "LF",
5 "validateIndentation": 2,
6 "excludeFiles": ["node_modules/**"],
7 "maximumLineLength": 130,
8 "validateQuoteMarks": "'",
9 "requireDotNotation": false,
10 "requireCamelCaseOrUpperCaseIdentifiers": {"allowedPrefixes": ["opt_"]},
11 "jsDoc": {
12 "checkAnnotations": {
13 "preset": "closurecompiler",
14 "extra": {
15 "type": true,
16 "suppress": true
17 }
18 },
19 "checkTypes": "strictNativeCase",
20 "enforceExistence": "exceptExports"
21 }
22}