一些开发中工具

https://www.npmjs.com/package/jotai

React状态管理工具

VS Code的插件

  • ESLint: JS / TS 的格式检查、代码格式化插件;
  • stylelint: 样式表的格式检查工具;
  • Code Spell Checker:变量名拼写检查插件;
  • GitLens: Git 功能增强插件;
  • Mustache: 字符串模板高亮插件;
  • Jenkinsfile Support: CI 配置文件高亮插件;
  • TabNine: 某个很神奇的代码预测补全插件,装上它之后你会觉得是代码在写你而不是你 在写代码。

全局快捷键配置文件 keybindings.json,加入如下内容:

// Place your key bindings in this file to override the defaults
[
	{
		"key": "alt+shift+f",
		"command": "stylelint.executeAutofix",
		"when": "editorTextFocus && editorLangId == 'css'"
	},
	{
		"key": "alt+shift+f",
		"command": "stylelint.executeAutofix",
		"when": "editorTextFocus && editorLangId == 'scss'"
	},
	{
		"key": "alt+shift+f",
		"command": "stylelint.executeAutofix",
		"when": "editorTextFocus && editorLangId == 'less'"
	}
]

这些设置可以帮助您完成样式表的自动格式修正工作。

原文地址:https://www.cnblogs.com/kangxinzhi/p/14932158.html