Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

todo 298 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  1. #!/usr/bin/env bash
  2. # [start-readme]
  3. #
  4. # List all the TODOs in our JavaScript files and stylesheets.
  5. #
  6. # [end-readme]
  7. echo "JavaScript TODOs"
  8. grep -R TODO . --include "*.js" --exclude-dir=node_modules
  9. echo
  10. echo
  11. echo "Stylesheet TODOs"
  12. grep -R TODO . --include "*.*css" --exclude-dir=node_modules
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...