Files
schemastore/.github/labeler.yml
Sorin Sbarnea bbbac6d970 Enable prettier on YAML files (#2250)
This change will ensure that YAML files are using a consistent
formatting and will reformat (normalize) them if needed.

Related:
2022-05-17 10:17:54 -07:00

58 lines
970 B
YAML

# Asp.Net files must not be updated.
WARNING_AspNetFiles:
- "src/bin/**/*"
- "src/css/**/*"
- "src/img/**/*"
- "src/js/**/*"
- "**/*.sln"
- "**/*.cshtml"
- "**/*.config"
- "**/*.webinfo"
- "**/*.ico"
- "**/*.txt"
# code change
gruntfile.cjs:
- "src/Gruntfile.cjs"
# schema setting change
schema-validation.json:
- "src/schema-validation.json"
# possible code change
GitHub_ci_folder:
- ".github/**/*"
# possible code change
makefile:
- "Makefile"
# possible code change
NodeJs:
- "src/package.json"
- "src/package-lock.json"
# possible URL change
doc_md:
- "**/*.md"
# formatting change
editorconfig:
- ".editorconfig"
# lint change
eslintrcjson:
- "src/.eslintrc.json"
# .gitignore change
gitignore:
- ".gitignore"
- ".gitattributes"
# Do not add "api", "schema" and "test" directories.
# Those are the usual commit. No need for extra attention.
# src/api/**/*
# src/schema/*
# src/test/**/*
# src/negative_test/**/*