Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
nexedi
gitlab-ce
Commits
95644eca
Commit
95644eca
authored
3 years ago
by
KunQian
Browse files
Options
Download
Email Patches
Plain Diff
Make eslint ignore js files in JH folder when in jh
parent
c8fd3927
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
6 deletions
+20
-6
.eslintrc.yml
.eslintrc.yml
+1
-1
tooling/eslint-config/conditionally_ignore.js
tooling/eslint-config/conditionally_ignore.js
+19
-0
tooling/eslint-config/conditionally_ignore_ee.js
tooling/eslint-config/conditionally_ignore_ee.js
+0
-5
No files found.
.eslintrc.yml
View file @
95644eca
...
...
@@ -3,7 +3,7 @@ extends:
-
plugin:@gitlab/i18n
-
plugin:no-jquery/slim
-
plugin:no-jquery/deprecated-3.4
-
./tooling/eslint-config/conditionally_ignore
_ee
.js
-
./tooling/eslint-config/conditionally_ignore.js
globals
:
__webpack_public_path__
:
true
gl
:
false
...
...
This diff is collapsed.
Click to expand it.
tooling/eslint-config/conditionally_ignore.js
0 → 100644
View file @
95644eca
/* eslint-disable import/no-commonjs */
const
IS_EE
=
require
(
'
../../config/helpers/is_ee_env
'
);
const
IS_JH
=
require
(
'
../../config/helpers/is_jh_env
'
);
const
allPatterns
=
[
{
ignore
:
!
IS_EE
,
pattern
:
'
ee/**/*.*
'
,
},
{
ignore
:
!
IS_JH
,
pattern
:
'
jh/**/*.*
'
,
},
];
const
ignorePatterns
=
allPatterns
.
filter
((
x
)
=>
x
.
ignore
).
map
((
x
)
=>
x
.
pattern
);
module
.
exports
=
{
ignorePatterns
};
This diff is collapsed.
Click to expand it.
tooling/eslint-config/conditionally_ignore_ee.js
deleted
100644 → 0
View file @
c8fd3927
/* eslint-disable import/no-commonjs */
const
IS_EE
=
require
(
'
../../config/helpers/is_ee_env
'
);
module
.
exports
=
IS_EE
?
{}
:
{
ignorePatterns
:
[
'
ee/**/*.*
'
]
};
This diff is collapsed.
Click to expand it.
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