You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: lib/worker.js
+18-5Lines changed: 18 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,20 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
23
23
24
24
process.title='linter-eslint helper';
25
25
26
+
constignoredMessages=[
27
+
// V1
28
+
'File ignored because of your .eslintignore file. Use --no-ignore to override.',
29
+
// V2
30
+
'File ignored because of a matching ignore pattern. Use --no-ignore to override.',
31
+
// V2.11.1
32
+
'File ignored because of a matching ignore pattern. Use "--no-ignore" to override.',
33
+
// supress warning that the current file is ignored by eslint by default
34
+
'File ignored by default. Use a negated ignore pattern (like "--ignore-pattern \'!<relative'+'/path/to/filename>\'") to override.','File ignored by default. Use "--ignore-pattern \'!node_modules/*\'" to override.','File ignored by default. Use "--ignore-pattern \'!bower_components/*\'" to override.'];
0 commit comments