fixed plugins
This commit is contained in:
parent
63c0612328
commit
7bf44c7133
@ -98,8 +98,8 @@
|
||||
<file leaf-file-name="filter_reject.js" pinned="false" current-in-tab="true">
|
||||
<entry file="file://$PROJECT_DIR$/plugins/filter_reject.js">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="19">
|
||||
<caret line="1" column="200" selection-start-line="1" selection-start-column="200" selection-end-line="1" selection-end-column="200" />
|
||||
<state relative-caret-position="76">
|
||||
<caret line="4" column="45" selection-start-line="4" selection-start-column="45" selection-end-line="4" selection-end-column="45" />
|
||||
<folding />
|
||||
</state>
|
||||
</provider>
|
||||
@ -504,14 +504,7 @@
|
||||
<workItem from="1467711290711" duration="5012000" />
|
||||
<workItem from="1470306186124" duration="2941000" />
|
||||
<workItem from="1471440704946" duration="4440000" />
|
||||
<workItem from="1471450197893" duration="22000" />
|
||||
</task>
|
||||
<task id="LOCAL-00012" summary="debugging braider">
|
||||
<created>1438343085237</created>
|
||||
<option name="number" value="00012" />
|
||||
<option name="presentableId" value="LOCAL-00012" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1438343085237</updated>
|
||||
<workItem from="1471450197893" duration="2150000" />
|
||||
</task>
|
||||
<task id="LOCAL-00013" summary="reverting">
|
||||
<created>1438343244912</created>
|
||||
@ -849,11 +842,18 @@
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1471444588922</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="61" />
|
||||
<task id="LOCAL-00061" summary="fixed plugins">
|
||||
<created>1471450226774</created>
|
||||
<option name="number" value="00061" />
|
||||
<option name="presentableId" value="LOCAL-00061" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1471450226774</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="62" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TimeTrackingManager">
|
||||
<option name="totallyTimeSpent" value="51728000" />
|
||||
<option name="totallyTimeSpent" value="53856000" />
|
||||
</component>
|
||||
<component name="ToolWindowManager">
|
||||
<frame x="0" y="23" width="1920" height="1177" extended-state="6" />
|
||||
@ -1302,8 +1302,8 @@
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/plugins/filter_reject.js">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="19">
|
||||
<caret line="1" column="200" selection-start-line="1" selection-start-column="200" selection-end-line="1" selection-end-column="200" />
|
||||
<state relative-caret-position="76">
|
||||
<caret line="4" column="45" selection-start-line="4" selection-start-column="45" selection-end-line="4" selection-end-column="45" />
|
||||
<folding />
|
||||
</state>
|
||||
</provider>
|
||||
|
@ -1,7 +1,13 @@
|
||||
module.exports = function (item, itemOptions, source) {
|
||||
var patt = /(drupal|SHAREPOINT|Support Engineer|per annum|Devops Engineer|ServiceNow|Test Lead|User Researcher|Service Management|\(PERM\)|Java Developer|£\d.K|Remedy|ITSM|Symfony|Zend|PHP Developer)/ig;
|
||||
var result = patt.test(itemOptions.description);
|
||||
var resultB = patt.test(itemOptions.title);
|
||||
var patt = /(drupal|SHAREPOINT|per annum|ServiceNow|Test Lead|User Researcher|Service Management|\(PERM\)|£\d.K|Remedy|ITSM|Symfony|Zend|Full Time|Technical Business Analyst)/ig;
|
||||
|
||||
var engineers = /(Support|Devops)\s(Engineer)/ig;
|
||||
var developers = /(Java|PHP|Graduate|Access)\s(Developer)/ig;
|
||||
var architects = /(Java|PHP|Microsoft)\s(Architect)/ig;
|
||||
|
||||
var result = patt.test(description) || engineers.test(description) || developers.test(description) || architects.test(description);
|
||||
var resultB = patt.test(title) || engineers.test(title) || developers.test(title) || architects.test(title);
|
||||
|
||||
return (result||resultB === true) ? -1 : itemOptions;
|
||||
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user