Open matheusgrieger opened 4 years ago
When using parcel-plugin-eslint, the serve command is giving me the following error:
parcel-plugin-eslint
serve
Simply removing parcel-plugin-eslint from package.json solved the issue. My dependencies are below (parcel-plugin-eslint is commented because it is removed).
package.json
Any update on this?
Some here
same issue here~
Same
When using
parcel-plugin-eslint
, theserve
command is giving me the following error:Simply removing
parcel-plugin-eslint
frompackage.json
solved the issue. My dependencies are below (parcel-plugin-eslint
is commented because it is removed).Dependencies
```json { "devDependencies": { "@types/animejs": "^3.1.0", "@types/lodash": "^4.14.149", "@types/swiper": "^5.2.0", "@typescript-eslint/eslint-plugin": "^2.11.0", "@typescript-eslint/parser": "^2.11.0", "autoprefixer": "^9.7.3", "eslint": "^6.7.2", "eslint-config-airbnb-base": "^14.0.0", "eslint-config-airbnb-typescript": "^6.3.1", "eslint-config-prettier": "^6.7.0", "eslint-plugin-import": "^2.19.1", "eslint-plugin-prettier": "^3.1.2", "husky": "^3.1.0", "lint-staged": "^9.5.0", "parcel-bundler": "^1.12.4", // "parcel-plugin-eslint": "^1.0.8-2", "prettier": "^1.19.1", "pretty-quick": "^2.0.1", "sass": "^1.23.7", "typescript": "^3.7.3" }, "dependencies": { "animejs": "^3.1.0", "bulma": "^0.8.0", "cash-dom": "^4.1.5", "lodash": "^4.17.15", "sweetalert": "^2.1.2", "swiper": "^5.2.1" } } ```