diff --git a/.eslintignore b/.eslintignore index 72df373..701947e 100644 --- a/.eslintignore +++ b/.eslintignore @@ -13,6 +13,8 @@ # misc /coverage/ !.* +.*/ +.eslintcache # ember-try /.node_modules.ember-try/ diff --git a/.eslintrc.js b/.eslintrc.js index 6745071..d44ac03 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,8 +1,13 @@ +'use strict'; + module.exports = { root: true, parserOptions: { ecmaVersion: 2018, - sourceType: 'module' + sourceType: 'module', + ecmaFeatures: { + legacyDecorators: true + } }, plugins: [ 'ember', diff --git a/.gitignore b/.gitignore index 439bc4a..45ea3f6 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ /.env* /.pnp* /.sass-cache +/.eslintcache /connect.lock /coverage/ /libpeerconnection.log diff --git a/.npmignore b/.npmignore index 663df11..7c599f1 100644 --- a/.npmignore +++ b/.npmignore @@ -10,9 +10,12 @@ /.editorconfig /.ember-cli /.env* +/.eslintcache /.eslintignore /.eslintrc.js /.gitignore +/.prettierignore +/.prettierrc.js /.template-lintrc.js /.travis.yml /.watchmanconfig @@ -22,6 +25,7 @@ /ember-cli-build.js /testem.js /tests/ +/yarn-error.log /yarn.lock .gitkeep docs/ diff --git a/.travis.yml b/.travis.yml index 916d2d0..72d7039 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: node_js node_js: # we recommend testing addons with the same minimum supported node version as Ember CLI # so that your addon works for all apps - - "8" + - "12" sudo: false dist: trusty @@ -27,13 +27,12 @@ branches: - /^v\d+\.\d+\.\d+/ jobs: - fail_fast: true + fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary include: # runs linting and tests with current locked deps - - stage: "Tests" name: "Tests" script: diff --git a/README.md b/README.md index 14378bb..7b4f80d 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ to audit your apps. Compatibility ------------------------------------------------------------------------------ -* Ember.js v2.18 or above -* Ember CLI v2.13 or above -* Node.js v8 or above +* Ember.js v3.24 or above +* Ember CLI v3.24 or above +* Node.js v12 or above Installation diff --git a/addon/templates/components/accessibility-result.hbs b/addon/templates/components/accessibility-result.hbs index 195b973..4fb8f80 100644 --- a/addon/templates/components/accessibility-result.hbs +++ b/addon/templates/components/accessibility-result.hbs @@ -13,7 +13,7 @@ {{violation.component}} {{/if}}

- {{violation.description}}. Read More + {{violation.description}}. Read More