webstorm_watch_limit达到上限之解决办法:
To prevent this situation it is recommended to increase the watches limit (to, say, 512K):
1>.Add the following line to a new *.conf file (e.g. idea.conf) under /etc/sysctl.d/ directory:
fs.inotify.max_user_watches = 524288
2>.Then run this command to apply the change:
sudo sysctl -p --system
3>.And don't forget to restart your IDE.
Note: the watch limit is per-account setting. If there are other programs running under the same account that also use inotify, the limit should be raised high enough to suit the needs of all of them.
https://intellij-support.jetbrains.com/hc/en-us/articles/15268113529362-Inotify-Watches-Limit-Linux
