Skip to content

Commit

Permalink
fix: simplify YAML lint config (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
greatislander authored Aug 15, 2023
1 parent 35ff236 commit 40ea5f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
"fluid",
"plugin:yml/standard"
],
ignorePatterns: ["_site/", "src/_locales/messages.js", "!.*.cjs", "!.*.js"],
ignorePatterns: ["_site/", "src/_locales/messages.js", "!.*.cjs", "!.*.js", "!.github/"],
env: {
amd: true,
browser: true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint \"**/*.js\"",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"lint:yml": "eslint --no-error-on-unmatched-pattern \".github/**/*.yml\" \"**/*.yml\"",
"lint:yml": "eslint \"**/*.yml\"",
"start": "npm-run-all -l clean -p start:*",
"start:eleventy": "run-p dev cms",
"prepare": "husky install"
Expand Down

0 comments on commit 40ea5f9

Please sign in to comment.