forked from uswds/uswds-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
23 lines (23 loc) · 724 Bytes
/
.eslintrc
File metadata and controls
23 lines (23 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"rules": {
"no-unused-vars": [ 0 ],
"no-console": [ 0 ],
"indent": [ 1, 2 ],
"quotes": [ 2, "single" ],
"linebreak-style": [ 2, "unix" ],
"semi": [ 2, "always" ],
"comma-dangle": [ 1, "always-multiline" ],
"no-undef": [ 0 ],
"space-before-function-paren": [ 2, "always" ],
"array-bracket-spacing": [ 2, "always" ],
"block-spacing": [ 2, "always" ],
"comma-spacing": [ 2, { "before": false, "after": true } ],
"computed-property-spacing": [ 2, "always" ],
"object-curly-spacing": [ 2, "always" ]
},
"env": {
"node": true,
"browser": true
},
"extends": "eslint:recommended"
}