We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f623d12 commit eddccecCopy full SHA for eddccec
packages/app/config/webpack.common.js
@@ -25,7 +25,18 @@ const publicPath = SANDBOX_ONLY || __DEV__ ? '/' : getHost() + '/';
25
// Shim for `eslint-plugin-vue/lib/index.js`
26
const ESLINT_PLUGIN_VUE_INDEX = `module.exports = {
27
rules: {${fs
28
- .readdirSync('../../node_modules/eslint-plugin-vue/lib/rules')
+ .readdirSync(
29
+ path.join(
30
+ __dirname,
31
+ '..',
32
33
34
+ 'node_modules',
35
+ 'eslint-plugin-vue',
36
+ 'lib',
37
+ 'rules'
38
+ )
39
40
.filter(filename => path.extname(filename) === '.js')
41
.map(filename => {
42
const ruleId = path.basename(filename, '.js');
0 commit comments