diff --git a/package.json b/package.json index 040c495..a88fcd1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fs/eslint-config-tree", - "version": "6.0.0", + "version": "6.0.1", "description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.", "main": "index.js", "repository": { diff --git a/qa.js b/qa.js index c8f0ba1..24c6d55 100644 --- a/qa.js +++ b/qa.js @@ -18,7 +18,8 @@ module.exports = { 'import/no-extraneous-dependencies': ['error', { 'devDependencies': true }], 'testing-library/no-await-sync-query': 'off', // All @testing-library/webdriverio queries are async (https://testing-library.com/docs/webdriverio-testing-library/intro/) 'testing-library/prefer-screen-queries': 'off', // We use browser instead of screen for @testing-library/webdriverio - '@babel/no-unused-expressions': 'off' // to allow expressions like this: tree.expect(await (await $(tree.MBTpageObjects.getBCButton())).isDisplayed()).to.be.true + '@babel/no-unused-expressions': 'off', // to allow expressions like this: tree.expect(await (await $(tree.MBTpageObjects.getBCButton())).isDisplayed()).to.be.true + 'func-names': 'off' // to allow for how WDIO does "it" functions: "it('Login', async function () {". We need "this" and we can keep "this" by using "unnamed async function" } } ]