# Prettier > If you want to run Prettier programmatically, check this page out. ## Pages - [Prettier Documentation](prettier-documentation.md): id: api - [.prettierrc or .prettierrc.yaml](prettierrc-or-prettierrcyaml.md): trailingComma: "es5" - [.prettierrc.toml](prettierrctoml.md): trailingComma = "es5" - [Stop the editor from looking for .editorconfig files in the parent directories](stop-the-editor-from-looking-for-editorconfig-files-in-the-parent-directories.md) - [Non-configurable Prettier behaviors](non-configurable-prettier-behaviors.md): charset = utf-8 - [Caveat: Prettier won’t trim trailing whitespace inside template strings, but your editor might.](caveat-prettier-wont-trim-trailing-whitespace-inside-template-strings-but-your-e.md) - [(change these if your Prettier config differs)](change-these-if-your-prettier-config-differs.md): end_of_line = lf - [Ignore all HTML files:](ignore-all-html-files.md): **/*.html - [prettier-ignore](prettier-ignore.md): key : value - [Prettify all selected files](prettify-all-selected-files.md): echo "$FILES" | xargs ./node_modules/.bin/prettier --ignore-unknown --write - [Add back the modified/prettified files to staging](add-back-the-modifiedprettified-files-to-staging.md): echo "$FILES" | xargs git add