Skip to content

Commit

Permalink
Merge pull request #5 from anek77713/asisov
Browse files Browse the repository at this point in the history
Asisov - homework
  • Loading branch information
gregurco committed May 15, 2019
2 parents 09d5b90 + 92abd44 commit 99e4670
Show file tree
Hide file tree
Showing 22 changed files with 24,201 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .browserslistrc
@@ -0,0 +1,2 @@
> 1%
last 2 versions
17 changes: 17 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/recommended',
'@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
30 changes: 29 additions & 1 deletion README.md
@@ -1 +1,29 @@
# Homework-VueJS
# www

## Project setup
```
yarn install
```

### Compiles and hot-reloads for development
```
yarn run serve
```

### Compiles and minifies for production
```
yarn run build
```

### Run your tests
```
yarn run test
```

### Lints and fixes files
```
yarn run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions babel.config.js
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}

0 comments on commit 99e4670

Please sign in to comment.