97605ec7d7
* get deprecation workflow up to date * fix routing.transition-methods deprecation * fix this-property-fallback deprecation * fix implicit-injections deprecation * argument-less-helper-paren-less-invocation * remove unmaintained ember-transition-helper which triggers deprecated-run-loop-and-computed-dot-access deprecation * reset to only log but not throw on errors to not block other development * reset double quote to single quote changes in templates and fix Prettier config * fix JS linting * ugprade ember-template-lint to fix parser
21 lines
780 B
JavaScript
21 lines
780 B
JavaScript
/* global self */
|
|
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
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: 'silence', matchId: 'ember-cli-page-object.multiple' },
|
|
{ handler: 'silence', matchId: 'autotracking.mutation-after-consumption' },
|
|
{ handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
|
],
|
|
};
|