检查yaml语法的工具

1、安装node

curl -sL https://rpm.nodesource.com/setup_11.x | bash -
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
yum install yarn -y

2、验证node安装

[root@iZuf612i9bshiuw3zzlfe9Z cfg]# node --version
v11.15.0

3、安装yamllint工具

npm install -g yaml-lint
[root@iZuf612i9bshiuw3zzlfe9Z cfg]# npm install -g yaml-lint
/usr/bin/yamllint -> /usr/lib/node_modules/yaml-lint/cli.js
+ yaml-lint@1.2.4
added 45 packages from 35 contributors in 9.719s

4、使用

yamllint test.yml或者
yamllint test.yaml

有错如下:
检查yaml语法的工具

正常如下:
检查yaml语法的工具

上一篇:小程序格式化代码ESLint、Prettier、husky、lint-stage


下一篇:Kotlin代码检查在美团的探索与实践