forked from guardian/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintignore
47 lines (37 loc) · 815 Bytes
/
.eslintignore
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
# for perf reasons, exclude all files by default
/*
# since we'll opting their parents back in, we need to explicitly exclude these
node_modules
__flow__
flow-type*
__snapshots__
dist
coverage
# generic options
!.eslintrc.js
!.stylelintrc.js
# files cannot be opted in if their parents are opted out, therefore
# we need to explicitly opt each parent back in, then ignore all
# children again except what we want.
# see https://git-scm.com/docs/gitignore
# include static
!/static
/static/*
# main app
!/static/src
/static/src/*
!/static/src/javascripts*
# legacy tests #karma-jest
!/static/test
/static/test/*
!/static/test/javascripts-legacy
/static/test/javascripts-legacy/components
/static/test/javascripts-legacy/helpers/raw-loader.js
# guui
!/ui
# dev
!/dev
# tools
!/tools
# git-hooks
!/git-hooks