Skip to content

Commit 942aaca

Browse files
committed
added some comments
1 parent 5358aae commit 942aaca

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
- run: npm ci
1919

2020
- 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
2224
- run: npx nx affected --target=lint --parallel=3
2325
- run: npx nx affected --target=build --parallel=3

apps/codelab/src/app/codelabs/about/about.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export class AboutComponent implements OnInit {
3232
},
3333
},
3434
highlights: {
35+
// TODO(sancheez): original file:
36+
// libs/code-demos/src/lib/code-demo-editor/utils/utils.ts
3537
find: require('!!raw-loader!./samples/find-position.ts.file')
3638
.default,
3739
},

apps/kirjs/src/app/modules/ast/babel-highlight/babel-highlight-match.directive.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ import { CodeDemoEditorComponent } from '@codelab/code-demos';
33

44
// TODO(kirjs): Uncommit
55
@Directive({
6-
// TODO: Fix linter warnings on the selector and delete this comment.
76
selector: '[slidesBabelHighlightMatch]',
87
})
98
export class BabelHighlightDirective implements AfterViewInit {
10-
// TODO: Fix linter warnings on the next line and delete this comment.
119
@Input('slidesBabelHighlightMatch') callback;
1210

1311
constructor(private editorComponent: CodeDemoEditorComponent) {}

0 commit comments

Comments
 (0)