storefront/.eslintrc.js
Albert Juhé Lluveras 7100254161
Update dependencies and fix e2e tests (#2160)
* Bump webpack from 5.83.1 to 5.94.0

Bumps [webpack](https://github.com/webpack/webpack) from 5.83.1 to 5.94.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.83.1...v5.94.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update e2e workflow so we manually install docker-compose

* Revert "Update e2e workflow so we manually install docker-compose"

This reverts commit 6660072f60.

* Update extra packages

* Update node

* Downgrade susy

* New build script

* Fix test:e2e script

* Fix e2e test

* Make sure build-js.sh and validate-build.sh are excluded from builds

* Update @wordpress/prettier-config

* Downgrade @wordpress/eslint-plugin and @wordpress/scripts

* Remove @typescript-eslint/no-this-alias rule

* Fix versions

* Update .nvmrc version

* Update package-lock.json

* Update package-lock.json (II)

* Fix missing variables in scripts

* Remove new build-js.sh script

* Remove testing attribute

* Update node and npm version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-19 09:40:19 +02:00

14 lines
339 B
JavaScript

module.exports = {
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
globals: {
jQuery: 'readonly',
},
settings: {},
rules: {
'woocommerce/feature-flag': 'off',
'@wordpress/no-global-active-element': 'warn',
camelcase: 'off',
'@typescript-eslint/no-this-alias': 'off',
},
ignorePatterns: [ '**/*.min.js' ],
};