Skip to content

Commit fffcc1c

Browse files
committed
Add TODOs
1 parent 24b748c commit fffcc1c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tools/make/lib/complexity/javascript.mk

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ endif
1717
# Analyze code complexity.
1818
#
1919
# This target analyzes all JavaScript source code.
20+
#
21+
# TODO: address bash argument length errors
2022

2123
complexity-javascript: $(NODE_MODULES)
2224
$(QUIET) $(JAVASCRIPT_COMPLEXITY) $(JAVASCRIPT_COMPLEXITY_FLAGS) $(SOURCES) $(TESTS) $(EXAMPLES) $(BENCHMARKS)
@@ -27,6 +29,8 @@ complexity-javascript: $(NODE_MODULES)
2729
# Analyze source code complexity.
2830
#
2931
# This target analyzes only JavaScript source files.
32+
#
33+
# TODO: address bash argument length errors
3034

3135
complexity-javascript-src: $(NODE_MODULES)
3236
$(QUIET) $(JAVASCRIPT_COMPLEXITY) $(JAVASCRIPT_COMPLEXITY_FLAGS) $(SOURCES)
@@ -37,6 +41,8 @@ complexity-javascript-src: $(NODE_MODULES)
3741
# Analyze test code complexity.
3842
#
3943
# This target analyzes only JavaScript test files.
44+
#
45+
# TODO: address bash argument length errors
4046

4147
complexity-javascript-tests: $(NODE_MODULES)
4248
$(QUIET) $(JAVASCRIPT_COMPLEXITY) $(JAVASCRIPT_COMPLEXITY_FLAGS) $(TESTS)
@@ -47,6 +53,8 @@ complexity-javascript-tests: $(NODE_MODULES)
4753
# Analyze example code complexity.
4854
#
4955
# This target analyzes only JavaScript example files.
56+
#
57+
# TODO: address bash argument length errors
5058

5159
complexity-javascript-examples: $(NODE_MODULES)
5260
$(QUIET) $(JAVASCRIPT_COMPLEXITY) $(JAVASCRIPT_COMPLEXITY_FLAGS) $(EXAMPLES)
@@ -57,6 +65,8 @@ complexity-javascript-examples: $(NODE_MODULES)
5765
# Analyze benchmark code complexity.
5866
#
5967
# This target analyzes only JavaScript benchmark files.
68+
#
69+
# TODO: address bash argument length errors
6070

6171
complexity-javascript-benchmarks: $(NODE_MODULES)
6272
$(QUIET) $(JAVASCRIPT_COMPLEXITY) $(JAVASCRIPT_COMPLEXITY_FLAGS) $(BENCHMARKS)

0 commit comments

Comments
 (0)