#eslint #vue-cli
Вопрос:
запустите проект test
с помощью vue-cli
test
папка проекта vue и common
папка находятся на одном уровне.
D:/test
D:/common
импортируйте js из общих файлов в test
import a from '../../common/index'
ошибка eslint
Failed to compile.
../common/index.js
Module Warning (from ./node_modules/eslint-loader/index.js):
D:commonindex.js
2:1 error Parsing error: The keyword 'export' is reserved
добавить common
в eslint ignorePatterns
не работает
ignorePatterns: ['**/common/**/*.js', 'common', '~/common/**', '**/common/**'],
добавить /* eslint-disable */
в common/index.js
также не работает
как решить эту проблему ?