Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
5a2d7bf2
Commit
5a2d7bf2
authored
Mar 28, 2019
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore Jest config from ESLint
parent
baa671a3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
.eslintignore
.eslintignore
+1
-0
jest.config.js
jest.config.js
+9
-1
No files found.
.eslintignore
View file @
5a2d7bf2
...
@@ -9,5 +9,6 @@
...
@@ -9,5 +9,6 @@
/scripts/
/scripts/
/tmp/
/tmp/
/vendor/
/vendor/
jest.config.js
karma.config.js
karma.config.js
webpack.config.js
webpack.config.js
jest.config.js
View file @
5a2d7bf2
/* eslint-disable filenames/match-regex */
const
fs
=
require
(
'
fs
'
);
const
path
=
require
(
'
path
'
);
const
ROOT_PATH
=
__dirname
;
const
IS_EE
=
process
.
env
.
EE
!==
undefined
?
JSON
.
parse
(
process
.
env
.
EE
)
:
fs
.
existsSync
(
path
.
join
(
ROOT_PATH
,
'
ee
'
));
const
reporters
=
[
'
default
'
];
const
reporters
=
[
'
default
'
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment