forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintignore
37 lines (33 loc) · 1.03 KB
/
.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
################################################################################
#
# First things first; we need to ignore our built files. To achive this, we
# have to do a bit of an ignore dance where we ignore everything, and then
# specifically un-ignore the source code, configuration files, etc.
#
# First: ignore FILES (not folders!)
/packages/**/*.js
/packages/**/*.jsx
/packages/**/*.ts
/packages/**/*.tsx
#
# Now un-ignore source code, tests, configuration, etc
!/packages/*/src/**
!/packages/*/test/**
!/packages/codemirror-graphql/resources/**
!/packages/examples/**
!.eslintrc.js
!babel.config.js
#
# End of the ignore dance.
#
################################################################################
# Regular eslintignore configuration follows.
# ESLint automatically ignores node_modules _in the root_, so we only need to specify nested node_modules
**/node_modules
/packages/examples/graphiql-cdn/graphiql*
# Build artifacts
**/flow-typed
**/dist
# Vendored files
/packages/codemirror-graphql/
/packages/graphiql/test/vendor