-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierignore
More file actions
143 lines (129 loc) · 2.15 KB
/
.prettierignore
File metadata and controls
143 lines (129 loc) · 2.15 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# PRETTIER SUCKS AND IS NOT ALLOWED TO RUN IN THIS PROJECT
# This file is here to make sure Prettier does NOT change anything to this project!
# The Prettier rules suck major ass and makes code look worse than if you practice
# good code ethics yourself. Learn to fucking code! Do NOT remove this ignore file,
# or you will be shot, fired, kicked, deleted and terminated!
# Additional info
# > https://prettier.io/docs/en/ignore.html
# Their docs advice you to use `**/*.html` to match all recursive files in the entire
# repo, but in the pattern without a slash (like *.html) already matches all files at
# any depth of the repo, not just the root.
# The explicit extension list in this file is a reasonable belt-and-suspenders approach
# given real historical unreliability. Prettier's ignore handling has been buggy and
# unreliable (especially in the VS Code extension), so this file has both the explicit
# extension list and the `/*` wildcard at the end as a double-safety measure. If one
# method fails, the other might still work.
# HTML & HTML templates
*.asp
*.aspx
*.cshtml
*.dhtml
*.ejs
*.erb
*.handlebars
*.hbs
*.htm
*.html
*.inc
*.jade
*.jhtml
*.liquid
*.mjml
*.njk
*.php
*.php2
*.php3
*.php4
*.php5
*.phtml
*.pug
*.rhtml
*.sht
*.shtm
*.shtml
*.ssi
*.twig
*.vbhtml
*.xhtm
*.xhtml
# Component frameworks
*.astro
*.svelte
*.vue
# JavaScript & TypeScript
*.bundle.js
*.bundle.js.map
*.bundle.min.js
*.bundle.min.js.map
*.cjs
*.cts
*.d.ts
*.js
*.js.map
*.jsx
*.min.js
*.min.js.map
*.mjs
*.mts
*.node
*.ts
*.tsx
# CSS & stylesheets
*.css
*.css.map
*.less
*.sass
*.scss
*.styl
# Data & config formats
*.config
*.gql
*.graphql
*.json
*.json5
*.jsonc
*.jsonl
*.ndjson
*.prisma
*.toml
*.yaml
*.yml
# XML & feeds
*.atom
*.opml
*.rss
*.xbel
*.xbl
*.xml
*.xul
# Markdown & documentation
*.markdown
*.md
*.mdx
*.txt
# Server-side & scripts
*.bash
*.cgi
*.fcgi
*.htaccess
*.rb
*.sh
*.zsh
# Graphics
*.svg
# Ignore folders (** = infinite depth)
.history/**
.sass-cache/**
.vscode/**
coverage/**
dist/**
download/**
es/**
lib/**
node_modules/**
template/**
template/public/**
template/src/**
# Ignore all
# Put as last rule, because Prettier may ignore this (according to reviews online)
/*