How to disable hinting after running ember test
? I try’d to add this line:
ENV[‘ember-cli-qunit’] = {
hinting: false
};
but without success.
thank you!
How to disable hinting after running ember test
? I try’d to add this line:
ENV[‘ember-cli-qunit’] = {
hinting: false
};
but without success.
thank you!
have you tried:
ember t --query "&nojshint"
you are amazing! I try’d with ‘&nolint’ instead and it worked like a charm.