developer with a passion for social justice, ethics, and helping people. ☭
-currently a software engineer @ yelp
-if you need to contact me, my email ismess [at] yelp [dot] com
-diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..e812394 --- /dev/null +++ b/.babelrc @@ -0,0 +1,6 @@ +{ + "presets": [ + ["env", { "modules": false }], + "stage-3" + ] +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9d08a1a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..2224397 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,3 @@ +module.exports = { + "extends": ["airbnb-base", "plugin:vue/recommended"] +}; diff --git a/.gitignore b/.gitignore index f7275bb..a0446a5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,12 @@ -venv/ +.DS_Store +node_modules/ +dist/ +npm-debug.log +yarn-error.log + +# Editor directories and files +.idea +*.suo +*.ntvs* +*.njsproj +*.sln diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4718ffd --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "eslint.enable": true +} \ No newline at end of file diff --git a/README.md b/README.md index cd050f3..084ffb3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,18 @@ # matthewess.github.io -My personal site. +> My personal site. + +## Build Setup + +``` bash +# install dependencies +npm install + +# serve with hot reload at localhost:8080 +npm run dev + +# build for production with minification +npm run build +``` + +For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader). diff --git a/css/.DS_Store b/css/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/css/.DS_Store and /dev/null differ diff --git a/css/style.css b/css/style.css deleted file mode 100644 index 557cbda..0000000 --- a/css/style.css +++ /dev/null @@ -1,85 +0,0 @@ -.title { - font-family: 'Raleway', sans-serif; - font-weight: 600; - display: inline-block; - float: left; - margin: 0; -} - -.text { - font-family: 'Open Sans', sans-serif; - font-weight: 300; -} - -.tiny { - font-size: 10pt; - margin-top: 40; -} - -#content { - text-align: center; - font-size: 14pt; -} - -body { - background-color: #f1f1f1; -} - -nav { - padding: 50; - padding-bottom: 100; - font-size: 14pt; -} - -ul { - list-style: none; - margin: 0; - padding: 0; - display: inline-block; - float: right; -} - -li a { - padding-left: 20; - color: black; - text-decoration: none; -} - -li a:hover { - color: #e08283; - -o-transition:.2s; - -ms-transition:.2s; - -moz-transition:.2s; - -webkit-transition:.2s; - transition:.2s; -} - -li a.active { - color: #e08283; -} - -@media (min-width: 1000px) { - body { - margin-left: 200px; - margin-right: 200px; - } - - li { - display: inline; - } - - nav { - font-size: 20pt; - } -} - -@media (max-width: 1000px) and (min-width: 340px) { - body { - margin-left: 20px; - margin-right: 20px; - } - - li { - margin-top: 2px; - } -} diff --git a/index.htm b/index.htm deleted file mode 100644 index f60c1b8..0000000 --- a/index.htm +++ /dev/null @@ -1,35 +0,0 @@ - - -
- - - -developer with a passion for social justice, ethics, and helping people. ☭
-currently a software engineer @ yelp
-if you need to contact me, my email ismess [at] yelp [dot] com
-