-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierignore
30 lines (23 loc) · 994 Bytes
/
.prettierignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# NOTES
# Reference: https://prettier.io/docs/en/ignore.html
# Run `prettier --write` to format all files in a directory, except those ignored in this file,
# Prettier follow rules specified in the ".gitignore" file if it exists in the same directory from which it is run.
# By default, Prettier ignores the following files
# **/.git
# **/.svn
# **/.hg
# **/node_modules
# To ignore specific lines in a file, add the following comments directly above the line:
# JavaScript = // prettier-ignore
# JSX = {/* prettier-ignore */}
# MARKDOWN = <!-- prettier-ignore -->
# HTML = <!-- prettier-ignore -->
# HTML ATTRIBUTE = <!-- prettier-ignore-attribute -->
# HTML SPECIFIC ATTRIBUTE = <!-- prettier-ignore-attribute (mouseup) -->
# CSS = /* prettier-ignore */
# YAML = # prettier-ignore
# DIRECTORIES & FILES TO INGORE
# Ignore build files
**/build
**/**.min.css
**/**.min.js