简体   繁体   English

如何调试 eslint 规则?

[英]How can I debug eslint rules?

I wanted to debug eslint rules for performance optimization.我想调试 eslint 规则以进行性能优化。 Is there any way I can debug it using browser/command-line/tool?有什么方法可以使用浏览器/命令行/工具对其进行调试?

You can use TIMING=1 when running on the command line:在命令行上运行时可以使用TIMING=1

$ TIMING=1 eslint lib

Rule                    | Time (ms) | Relative
:-----------------------|----------:|--------:
no-multi-spaces         |    52.472 |     6.1%
camelcase               |    48.684 |     5.7%
no-irregular-whitespace |    43.847 |     5.1%
valid-jsdoc             |    40.346 |     4.7%
handle-callback-err     |    39.153 |     4.6%
space-infix-ops         |    35.444 |     4.1%
no-undefined            |    25.693 |     3.0%
no-shadow               |    22.759 |     2.7%
no-empty-class          |    21.976 |     2.6%
semi                    |    19.359 |     2.3%

Documentation: https://eslint.org/docs/1.0.0/developer-guide/working-with-rules#per-rule-performance文档: https://eslint.org/docs/1.0.0/developer-guide/working-with-rules#per-rule-performance

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM