We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By default, ember-cli adds the following to .eslintrc.js:
.eslintrc.js
// node files { env: { browser: false, node: true, }, files: [ 'ember-cli-build.js', 'testem.js', 'blueprints/*/index.js', 'config/**/*.js', 'lib/*/index.js', ], parserOptions: { ecmaVersion: 2015, sourceType: 'script', }, },
That means the output to be copied to config/deprecation-workflow.js should have something like
config/deprecation-workflow.js
/* eslint-env browser */
or
/* globals window */
at the top.
Or, alternatively, ember-cli-deprecation-workflow should add
excludedFiles: [ 'config/deprecation-workflow.js' ],
to the relevant overrides section.
overrides
The text was updated successfully, but these errors were encountered:
I think this implies that workflow creates the file on installation, which it could. It doesn't today.
Sorry, something went wrong.
No branches or pull requests
By default, ember-cli adds the following to
.eslintrc.js
:That means the output to be copied to
config/deprecation-workflow.js
should have something like/* eslint-env browser */
or
/* globals window */
at the top.
Or, alternatively, ember-cli-deprecation-workflow should add
to the relevant
overrides
section.The text was updated successfully, but these errors were encountered: