File tree 6 files changed +21
-4
lines changed
6 files changed +21
-4
lines changed Original file line number Diff line number Diff line change
1
+ # EditorConfig helps developers define and maintain consistent
2
+ # coding styles between different editors and IDEs
3
+ # editorconfig.org
4
+
5
+ root = true
6
+
7
+ [* ]
8
+ end_of_line = lf
9
+ charset = utf-8
10
+ trim_trailing_whitespace = true
11
+ insert_final_newline = true
12
+ indent_style = space
13
+ indent_size = 2
14
+
15
+ [* .hbs ]
16
+ insert_final_newline = false
17
+
18
+ [* .{diff,md} ]
19
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 34
34
node-version : ${{ matrix.node-version }}
35
35
cache : pnpm
36
36
- run : pnpm install --frozen-lockfile
37
- - run : pnpm --filter "./packages/*" lint
37
+ - run : pnpm lint
38
38
39
39
test-all-packages :
40
40
name : Ember Tests
Original file line number Diff line number Diff line change 6
6
"url" : " git@github.com:ember-fastboot/ember-cli-fastboot.git"
7
7
},
8
8
"scripts" : {
9
+ "lint" : " pnpm --filter './*packages/**' lint" ,
9
10
"test" : " npm-run-all test:*" ,
10
11
"test:ember-cli-fastboot" : " pnpm --filter ember-cli-fastboot test:ember" ,
11
12
"test:fastboot" : " pnpm --filter fastboot test" ,
Original file line number Diff line number Diff line change 13
13
"scripts" : {
14
14
"build" : " ember build" ,
15
15
"build:prod" : " ember build --environment=production" ,
16
- "lint" : " npm-run-all --aggregate-output --continue-on-error --parallel lint:*" ,
17
16
"lint:hbs" : " ember-template-lint ." ,
18
17
"lint:js" : " eslint ." ,
19
18
"start" : " ember serve" ,
Original file line number Diff line number Diff line change 13
13
"scripts" : {
14
14
"build" : " ember build" ,
15
15
"build:prod" : " ember build --environment=production" ,
16
- "lint" : " npm-run-all --aggregate-output --continue-on-error --parallel lint:*" ,
17
16
"lint:hbs" : " ember-template-lint ." ,
18
17
"lint:js" : " eslint ." ,
19
18
"start" : " ember serve" ,
Original file line number Diff line number Diff line change 12
12
},
13
13
"scripts" : {
14
14
"build" : " ember build --environment=production" ,
15
- "lint" : " npm-run-all --aggregate-output --continue-on-error --parallel lint:*" ,
16
15
"lint:hbs" : " ember-template-lint ." ,
17
16
"lint:js" : " eslint ." ,
18
17
"start" : " ember serve" ,
You can’t perform that action at this time.
0 commit comments