decide.nolog.cz/config/deprecation-workflow.js

22 lines
778 B
JavaScript
Raw Normal View History

2019-04-24 21:43:02 +02:00
/* global self */
2019-04-24 21:43:02 +02:00
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
2017-07-31 13:59:19 +02:00
workflow: [
{
handler: 'silence',
matchId: 'deprecated-run-loop-and-computed-dot-access',
},
{
handler: 'silence',
matchId: 'ember-cli-mirage-config-routes-only-export',
},
{ handler: 'silence', matchId: 'ember-modifier.function-based-options' },
{ handler: 'silence', matchId: 'ember-cli-mirage.miragejs.import' },
{ handler: 'silence', matchId: 'ember.link-to.tag-name' },
{ handler: 'throw', matchId: 'ember-cli-page-object.multiple' },
{ handler: 'silence', matchId: 'autotracking.mutation-after-consumption' },
{ handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' },
],
2017-07-31 13:59:19 +02:00
};