2019-04-24 21:43:02 +02:00
|
|
|
/* global self */
|
2023-10-15 21:50:28 +02:00
|
|
|
|
2019-04-24 21:43:02 +02:00
|
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
|
|
self.deprecationWorkflow.config = {
|
2017-07-31 13:59:19 +02:00
|
|
|
workflow: [
|
2023-10-15 21:50:28 +02:00
|
|
|
{
|
|
|
|
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' },
|
2023-10-15 23:26:18 +02:00
|
|
|
{ handler: 'throw', matchId: 'ember-cli-page-object.multiple' },
|
2023-10-15 21:50:28 +02:00
|
|
|
{ handler: 'silence', matchId: 'autotracking.mutation-after-consumption' },
|
2023-10-15 20:37:03 +02:00
|
|
|
{ handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
|
|
|
],
|
2017-07-31 13:59:19 +02:00
|
|
|
};
|