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 25e7a6e commit 74b0cf4Copy full SHA for 74b0cf4
1 file changed
.eslintrc.js
@@ -10,6 +10,11 @@ esLintConfig.globals = {
10
};
11
esLintConfig.settings['import/resolver']['webpack'] = { config: require.resolve('./webpack.config.js')};
12
13
+// Update resolver settings to allow for pnpm's symlinked structure
14
+// https://github.com/import-js/eslint-plugin-import/issues/3110
15
+const nodeResolverSettings = esLintConfig.settings['import/resolver']['node'];
16
+esLintConfig.settings['import/resolver']['node'] = { ...(nodeResolverSettings || {}), preserveSymlinks: false };
17
+
18
// Remove once Vuetify is gone-- Vuetify uses too many unacceptable class names
19
esLintConfig.rules['kolibri/vue-component-class-name-casing'] = 0;
20
0 commit comments