How to disable deprecation warnings in Ember.js?
It's always good to consider deprecations, but if you want to just turn them off entirely add the following 2 lines to your main app.js file.
Ember.deprecate = function(){};
Ember.warn = function(i){};
You can just do Ember.deprecate = function(){}
in your application.js file and that should disable ember deprecation warnings.