Skip to content

Commit 17a2dc2

Browse files
Merge pull request #1251 from bryceosterhaus/LPD-55581
fix(eslint-plugin): fix path
2 parents d85ce67 + 45fb061 commit 17a2dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/eslint-plugin/rules/portal/lib/rules/no-api-submodule-import.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const path = require('path');
88
const DESCRIPTION =
99
'you cannot import files outside of the "/api" directory for your submodule.';
1010

11-
const API_PATH = 'src/main/resources/META-INF/resources/js/api';
11+
const API_PATH = 'src/main/resources/META-INF/resources/js/api/';
1212

1313
function isPathEscapingAPIDir(filePath, relativePath) {
1414
const resolvedTarget = path.resolve(path.dirname(filePath), relativePath);

0 commit comments

Comments
 (0)