-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.npmignore
120 lines (90 loc) · 2 KB
/
.npmignore
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
# FILE VERSION 1.0.0
# Ignore node_modules directory
node_modules
# Ignore lock files
package-lock.json
yarn.lock
# Ignore
# Logs files
log/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Ignore IDE specific file
.idea/
.vscode/
*.sw*
# Ignore LICENSE files
LICENSE
LICENSE.md
# Ignore .github directory
.github
# Ignore .husky directory
.husky
# Ignore huskyrc rule configurations file
.huskyrc
# git files
.gitconfig
.gitattributes
.gitignore
COMMIT_EDITMSG
# next.js build output
.next
# Mac OS X Files
.DS_Store
# eslint files
.eslintignore
.eslintrc{,.json}
# Optional eslint cache
.eslintcache
# prettier files
.prettierignore
.prettierrc{,.json}
# lintstaged rule configurations file
.lintstagedrc{,.json}
# babel rule configurations file
.babelrc{,.json}
# stylelint rule configurations file
.stylelintrc{,.json}
# module configurations files
ava.config.*
commitlint.config.*
jest.config.*
webpack.config.*
jsdoc.config.*
# editor configurations file
.editorconfig
# gulp configurations file
gulpfile.js
# nodemon configurations file
nodemon.json
# Ignore docs files
# ./docs/CHANGELOG.md
# ./docs/CHANGES.md
# ./docs/GITHUB.md
# ./docs/NOTICE.md
# ./docs/NOTES.md
# ./docs/ICON.png
# Ignore docs directory
docs/
# !docs/LOGO.png
# Ignore test directory
test/
# ━━ WORKSPACE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# notes directory
/notes/
# development directory
/development/
# develop files
/develop.js
# Matches the files name:
# <root>/develop-01.js
# <root>/develop_01.js
# <root>/develop.01.js
/develop[-_.][0-9][0-9].js
# Matches the files name:
# <root>/dev.script.some.js
# <root>/dev.script.somename.js
/dev.script.*.js
# ━━ PROJECT ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━