try to add linting
Showing
- .eslintrc.js 57 additions, 0 deletions.eslintrc.js
- babel.config.js 5 additions, 7 deletionsbabel.config.js
- package.json 7 additions, 1 deletionpackage.json
- quasar.conf.js 80 additions, 70 deletionsquasar.conf.js
- src/components/homepage/FeaturedGallery.vue 30 additions, 12 deletionssrc/components/homepage/FeaturedGallery.vue
- src/components/homepage/Hero.vue 18 additions, 8 deletionssrc/components/homepage/Hero.vue
- src/components/homepage/RecentGallery.vue 22 additions, 8 deletionssrc/components/homepage/RecentGallery.vue
- src/pages/Index.vue 36 additions, 32 deletionssrc/pages/Index.vue
- yarn.lock 527 additions, 15 deletionsyarn.lock
.eslintrc.js
0 → 100644
... | ... | @@ -9,6 +9,7 @@ |
"scripts": { | ||
"start": "quasar serve --history .", | ||
"build": "quasar build", | ||
"lint": "eslint --ext .js,.vue src", | ||
"test": "quasar test --unit jest", | ||
"test:unit": "jest --updateSnapshot", | ||
"test:unit:coverage": "jest --coverage", | ||
... | ... | @@ -32,7 +33,12 @@ |
"@quasar/app": "^1.2.1", | ||
"@quasar/quasar-app-extension-testing": "^1.0.0", | ||
"@quasar/quasar-app-extension-testing-unit-jest": "^1.0.0", | ||
"dotenv": "^8.0.0" | ||
"dotenv": "^8.0.0", | ||
"@vue/eslint-config-standard": "^4.0.0", | ||
"babel-eslint": "^10.0.1", | ||
"eslint": "^5.10.0", | ||
"eslint-loader": "^2.1.1", | ||
"eslint-plugin-vue": "^5.0.0" | ||
}, | ||
"engines": { | ||
"node": ">= 8.9.0", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment