Passed
Push — master ( 366f40...c67819 )
by Christian
13:04 queued 10s
created

app/administration/src/app/directive/index.js (1 issue)

1
export default () => {
2
    const context = require.context('./', false, /(?<!index)\.js$/);
0 ignored issues
show
The regular expression (?<!index)\.js$ seems to be invalid.
Loading history...
3
    return context.keys().forEach(item => context(item));
4
};
5