worldline-for-woocommerce
Last commit date
assets
3 months ago
inc
3 months ago
languages
3 months ago
modules
3 months ago
screenshots
3 months ago
shared
3 months ago
src
3 months ago
vendor
3 months ago
.eslintrc.js
3 months ago
BUILD_INFO.txt
3 months ago
LICENSE
3 months ago
class-plugin.php
3 months ago
composer.json
3 months ago
config.php
3 months ago
package.json
3 months ago
readme.txt
3 months ago
tsconfig.json
3 months ago
uninstall.php
3 months ago
webpack.config.js
3 months ago
worldline-for-woocommerce.php
3 months ago
.eslintrc.js
17 lines
| 1 | const eslintConfig = { |
| 2 | root: true, |
| 3 | extends: [ 'plugin:@wordpress/eslint-plugin/recommended' ], |
| 4 | settings: { |
| 5 | 'import/resolver': { |
| 6 | 'eslint-import-resolver-custom-alias': { |
| 7 | alias: { |
| 8 | '#shared': './shared/ts' |
| 9 | }, |
| 10 | extensions: ['.ts', '.tsx'], |
| 11 | }, |
| 12 | } |
| 13 | } |
| 14 | }; |
| 15 | |
| 16 | module.exports = eslintConfig; |
| 17 |