Skip to content

Commit

Permalink
Merge pull request #6 from yejineee/settings
Browse files Browse the repository at this point in the history
Settings
  • Loading branch information
yejineee authored May 1, 2021
2 parents 33bf4c4 + ef254a3 commit afe6aa0
Show file tree
Hide file tree
Showing 9 changed files with 16,534 additions and 6,775 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist/
public/
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
extends: [
'airbnb-base',
'plugin:vue/recommended',
'pretteir:prettier/recommended'
],
plugins: ['vue', 'import'],
env: {
browser: true,
node: true,
es6: true,
jest: true
}
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.DS_Store
node_modules
/dist
/public


# local env files
Expand Down
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
23,257 changes: 16,503 additions & 6,754 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,17 @@
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "~4.5.0",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.9.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"prettier": "^1.19.1",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
Expand Down
Binary file removed public/favicon.ico
Binary file not shown.
17 changes: 0 additions & 17 deletions public/index.html

This file was deleted.

8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// src/index.js
import Vue from "vue";
import AppComponent from "./components/AppComponent.vue";
import Vue from 'vue';
import AppComponent from './components/AppComponent.vue';

new Vue({
render: (h) => h(AppComponent),
}).$mount("#app");
render: h => h(AppComponent)
}).$mount('#app');

0 comments on commit afe6aa0

Please sign in to comment.