File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
codelab/src/app/codelabs/about
kirjs/src/app/modules/ast/babel-highlight Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 18
18
- run : npm ci
19
19
20
20
- run : npx nx workspace-lint
21
- # - run: npx nx format:check
21
+ # TODO(sancheez): temporarily disabled checking with prettier,
22
+ # before uncommenting the command needs to run format write command
23
+ # - run: npx nx format:check
22
24
- run : npx nx affected --target=lint --parallel=3
23
25
- run : npx nx affected --target=build --parallel=3
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ export class AboutComponent implements OnInit {
32
32
} ,
33
33
} ,
34
34
highlights : {
35
+ // TODO(sancheez): original file:
36
+ // libs/code-demos/src/lib/code-demo-editor/utils/utils.ts
35
37
find : require ( '!!raw-loader!./samples/find-position.ts.file' )
36
38
. default ,
37
39
} ,
Original file line number Diff line number Diff line change @@ -3,11 +3,9 @@ import { CodeDemoEditorComponent } from '@codelab/code-demos';
3
3
4
4
// TODO(kirjs): Uncommit
5
5
@Directive ( {
6
- // TODO: Fix linter warnings on the selector and delete this comment.
7
6
selector : '[slidesBabelHighlightMatch]' ,
8
7
} )
9
8
export class BabelHighlightDirective implements AfterViewInit {
10
- // TODO: Fix linter warnings on the next line and delete this comment.
11
9
@Input ( 'slidesBabelHighlightMatch' ) callback ;
12
10
13
11
constructor ( private editorComponent : CodeDemoEditorComponent ) { }
You can’t perform that action at this time.
0 commit comments