We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d6fc5b commit 99a5f32Copy full SHA for 99a5f32
scripts/map_functions.py
@@ -7,7 +7,6 @@
7
"""
8
9
import re
10
-from collections import Counter
11
from pathlib import Path
12
13
JS_BUILTINS = set(
@@ -255,16 +254,6 @@ def main():
255
254
else:
256
print(f"No recommendations for {get_file_string(file)}")
257
258
- for file in ROOT_DIR.glob("src/**/*.js"):
259
- if ignore_file(file):
260
- continue
261
- unused_functions = find_function_defined_not_used(file, functions)
262
- if unused_functions:
263
- print("-" * 100)
264
- print(get_file_string(file))
265
- print(unused_functions)
266
- print("\n\n")
267
-
268
269
if __name__ == "__main__":
270
main()
0 commit comments