File tree Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 6
6
"indent" : [
7
7
" error" ,
8
8
" tab" ,
9
- { "SwitchCase" : 1 }
9
+ {
10
+ "SwitchCase" : 1
11
+ }
10
12
],
11
13
"no-tabs" : [" off" ],
12
14
"no-unused-vars" : " off" ,
13
15
"semi" : [" error" , " always" ],
16
+ "brace-style" : [
17
+ " error" ,
18
+ " 1tbs" ,
19
+ {
20
+ "allowSingleLine" : true
21
+ }
22
+ ],
14
23
"object-curly-spacing" : [" error" , " always" ],
15
- "space-before-function-paren" : [" error" , {
16
- "anonymous" : " never" ,
17
- "named" : " never" ,
18
- "asyncArrow" : " always"
19
- }],
24
+ "space-before-function-paren" : [
25
+ " error" ,
26
+ {
27
+ "anonymous" : " never" ,
28
+ "named" : " never" ,
29
+ "asyncArrow" : " always"
30
+ }
31
+ ],
20
32
"no-trailing-spaces" : [
21
33
" error" ,
22
34
{
23
- "skipBlankLines" : true ,
24
- "ignoreComments" : true
35
+ "skipBlankLines" : true ,
36
+ "ignoreComments" : true
25
37
}
26
38
]
27
39
}
Original file line number Diff line number Diff line change 13
13
"download" : " npm run content --" ,
14
14
"test" : " npm run test -w @bluecadet/launchpad -- " ,
15
15
"docs" : " node .docs/generate.mjs" ,
16
- "watch-docs" : " nodemon"
16
+ "watch-docs" : " nodemon" ,
17
+ "lint" : " npx eslint ./packages/**/*.js" ,
18
+ "lint:fix" : " npx eslint ./packages/**/*.js --fix" ,
19
+ "lint:fix-dry" : " npx eslint ./packages/**/*.js --fix-dry-run"
17
20
},
18
21
"repository" : {
19
22
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments