From fa3f2d2cd196998bd1d0d09a0c649d7f26500ded Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 10 May 2020 09:24:22 -0400 Subject: Added the files --- .editorconfig | 13 + .eslintrc.js | 23 + .gitignore | 90 + .idea/workspace.xml | 77 - .prettierrc | 5 + README.md | 22 + assets/README.md | 7 + assets/variables.scss | 4 + components/Logo.vue | 79 + components/README.md | 7 + components/VuetifyLogo.vue | 18 + jsconfig.json | 12 + layouts/README.md | 7 + layouts/default.vue | 93 + layouts/error.vue | 44 + middleware/README.md | 8 + nuxt.config.js | 76 + package.json | 29 + pages/README.md | 6 + pages/index.vue | 75 + pages/inspire.vue | 15 + plugins/README.md | 7 + static/README.md | 11 + static/favicon.ico | Bin 0 -> 1393 bytes static/icon.png | Bin 0 -> 12699 bytes static/v.png | Bin 0 -> 5674 bytes static/vuetify-logo.svg | 1 + store/README.md | 10 + yarn.lock | 8471 ++++++++++++++++++++++++++++++++++++++++++++ 29 files changed, 9133 insertions(+), 77 deletions(-) create mode 100644 .editorconfig create mode 100644 .eslintrc.js create mode 100644 .gitignore delete mode 100644 .idea/workspace.xml create mode 100644 .prettierrc create mode 100644 README.md create mode 100644 assets/README.md create mode 100644 assets/variables.scss create mode 100644 components/Logo.vue create mode 100644 components/README.md create mode 100644 components/VuetifyLogo.vue create mode 100644 jsconfig.json create mode 100644 layouts/README.md create mode 100644 layouts/default.vue create mode 100644 layouts/error.vue create mode 100644 middleware/README.md create mode 100644 nuxt.config.js create mode 100644 package.json create mode 100644 pages/README.md create mode 100644 pages/index.vue create mode 100644 pages/inspire.vue create mode 100644 plugins/README.md create mode 100644 static/README.md create mode 100644 static/favicon.ico create mode 100644 static/icon.png create mode 100644 static/v.png create mode 100644 static/vuetify-logo.svg create mode 100644 store/README.md create mode 100644 yarn.lock diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5d12634 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..6b8177c --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,23 @@ +module.exports = { + root: true, + env: { + browser: true, + node: true + }, + parserOptions: { + parser: 'babel-eslint' + }, + extends: [ + '@nuxtjs', + 'prettier', + 'prettier/vue', + 'plugin:prettier/recommended', + 'plugin:nuxt/recommended' + ], + plugins: [ + 'prettier' + ], + // add your custom rules here + rules: { + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e8f682b --- /dev/null +++ b/.gitignore @@ -0,0 +1,90 @@ +# Created by .ignore support plugin (hsz.mobi) +### Node template +# Logs +/logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# Nuxt generate +dist + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless + +# IDE / Editor +.idea + +# Service worker +sw.* + +# macOS +.DS_Store + +# Vim swap files +*.swp diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index a272bff..0000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -