worldline-for-woocommerce
Last commit date
assets
1 week ago
inc
1 week ago
languages
1 week ago
modules
1 week ago
shared
1 week ago
src
1 week ago
vendor
1 week ago
.eslintrc.js
1 week ago
BUILD_INFO.txt
1 week ago
LICENSE
1 week ago
SECURITY.md
1 week ago
class-plugin.php
1 week ago
composer.json
1 week ago
config.php
1 week ago
package.json
1 week ago
readme.txt
1 week ago
tsconfig.json
1 week ago
uninstall.php
1 week ago
webpack.config.js
1 week ago
worldline-for-woocommerce.php
1 week 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 |