FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javascript-algorithms/.jscsrc at master · 4db/javascript-algorithms · GitHub
4db
/
javascript-algorithms
Public
forked from
mgechev/javascript-algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
javascript-algorithms
/
.jscsrc
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (29 loc) · 1.5 KB
Breadcrumbs
javascript-algorithms
/
.jscsrc
Copy path
File metadata and controls
29 lines (29 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{
"requireCurlyBraces"
: [
"
else
"
,
"
for
"
,
"
while
"
,
"
do
"
,
"
try
"
,
"
catch
"
],
"requireSpaceAfterKeywords"
: [
"
if
"
,
"
else
"
,
"
for
"
,
"
while
"
,
"
do
"
,
"
switch
"
,
"
return
"
,
"
try
"
,
"
catch
"
,
"
function
"
],
"requireSpacesInFunctionExpression"
: {
"beforeOpeningCurlyBrace"
:
true
},
"disallowMultipleVarDecl"
:
true
,
"requireSpacesInsideObjectBrackets"
:
"
allButNested
"
,
"disallowSpacesInsideArrayBrackets"
:
true
,
"disallowSpacesInsideParentheses"
:
true
,
"disallowSpaceAfterObjectKeys"
:
true
,
"disallowQuotedKeysInObjects"
:
true
,
"requireSpaceBeforeBinaryOperators"
: [
"
?
"
,
"
+
"
,
"
/
"
,
"
*
"
,
"
=
"
,
"
==
"
,
"
===
"
,
"
!=
"
,
"
!==
"
,
"
>
"
,
"
>=
"
,
"
<
"
,
"
<=
"
],
"disallowSpaceAfterBinaryOperators"
: [
"
!
"
],
"requireSpaceAfterBinaryOperators"
: [
"
?
"
,
"
,
"
,
"
+
"
,
"
/
"
,
"
*
"
,
"
:
"
,
"
=
"
,
"
==
"
,
"
===
"
,
"
!=
"
,
"
!==
"
,
"
>
"
,
"
>=
"
,
"
<
"
,
"
<=
"
],
"disallowSpaceBeforeBinaryOperators"
: [
"
,
"
],
"disallowSpaceAfterPrefixUnaryOperators"
: [
"
++
"
,
"
--
"
,
"
+
"
,
"
-
"
,
"
~
"
,
"
!
"
],
"disallowSpaceBeforePostfixUnaryOperators"
: [
"
++
"
,
"
--
"
],
"requireSpaceBeforeBinaryOperators"
: [
"
+
"
,
"
-
"
,
"
/
"
,
"
*
"
,
"
=
"
,
"
==
"
,
"
===
"
,
"
!=
"
,
"
!==
"
],
"requireSpaceAfterBinaryOperators"
: [
"
+
"
,
"
-
"
,
"
/
"
,
"
*
"
,
"
=
"
,
"
==
"
,
"
===
"
,
"
!=
"
,
"
!==
"
],
"disallowImplicitTypeConversion"
: [
"
numeric
"
,
"
binary
"
,
"
string
"
],
"disallowKeywords"
: [
"
with
"
,
"
eval
"
],
"disallowMultipleLineBreaks"
:
true
,
"disallowKeywordsOnNewLine"
: [
"
else
"
],
"requireLineFeedAtFileEnd"
:
true
,
"disallowTrailingWhitespace"
:
true
,
"excludeFiles"
: [
"
node_modules/**
"
,
"
bower_components/**
"
],
"validateIndentation"
:
2
}
Back
|
FazBrowse Home
|
New Git URL