Skip to content

Commit

Permalink
Merge pull request #3 from OriginalYellow/master
Browse files Browse the repository at this point in the history
Need to update my code
  • Loading branch information
eerlikh authored Feb 14, 2019
2 parents aed71e5 + e9290f8 commit 25bedd8
Show file tree
Hide file tree
Showing 100 changed files with 19,450 additions and 10,879 deletions.
Empty file removed .env
Empty file.
29 changes: 11 additions & 18 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'linebreak-style': 'off',
'no-unused-variables': 'off',
},
parserOptions: {
parser: 'babel-eslint',
},
};
"extends": "airbnb-base",
env: {
node: true,
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'linebreak-style': 'off',
'no-unused-variables': 'off',
},
};
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.DS_Store
node_modules
/dist
client/dist

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

Expand All @@ -19,3 +19,4 @@ yarn-error.log*
*.njsproj
*.sln
*.sw*
.env
28 changes: 0 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1 @@
# new-dnd-project

## Project setup
```
npm install
```

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

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

### Run your tests
```
npm run test
```

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

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'linebreak-style': 'off',
'no-unused-variables': 'off',
},
parserOptions: {
parser: 'babel-eslint',
},
};
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions client/now.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": 2,
"name": "dnd-web-app-client",
"builds": [
{ "src": "package.json", "use": "@now/static-build" }
],
"routes": [
{"src": "^/js/(.*)", "dest": "/js/$1"},
{"src": "^/css/(.*)", "dest": "/css/$1"},
{"src": "^/img/(.*)", "dest": "/img/$1"},
{"src": "^/fonts/(.*)", "dest": "/fonts/$1"},
{"src": ".*", "dest": "/index.html"}
],
"alias": "dnd-web-app-client"
}
Loading

0 comments on commit 25bedd8

Please sign in to comment.