Skip to content

Commit

Permalink
new version finished
Browse files Browse the repository at this point in the history
  • Loading branch information
ganlvtech committed Sep 17, 2018
1 parent 5d8dc61 commit ef5a52c
Show file tree
Hide file tree
Showing 25 changed files with 910 additions and 449 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VUE_APP_DOWNLOAD_BASE_URL=https://down.52pojie.cn
33 changes: 17 additions & 16 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'@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'
}
}
root: true,
env: {
node: true
},
extends: [
'plugin:vue/recommended'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'vue/html-indent': ['off'],
'vue/max-attributes-per-line': ['off']
},
parserOptions: {
parser: 'babel-eslint'
}
};
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ yarn-error.log*
*.njsproj
*.sln
*.sw*

/public/list.json
/php/origin.json
6 changes: 2 additions & 4 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module.exports = {
presets: [
'@vue/app'
]
}
presets: ['@vue/app']
};
Loading

0 comments on commit ef5a52c

Please sign in to comment.