Skip to content

Commit 4615c3e

Browse files
committed
feat: passing httpLib as init param
1 parent 6f68371 commit 4615c3e

File tree

6 files changed

+4640
-12
lines changed

6 files changed

+4640
-12
lines changed

.eslintrc.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ module.exports = {
66
},
77
extends: [
88
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
9-
'standard',
10-
// https://github.com/vuejs/eslint-plugin-vue,
11-
'plugin:vue/recommended'
9+
'standard'
1210
],
1311
plugins: [],
1412
// add your custom rules here
@@ -20,10 +18,6 @@ module.exports = {
2018
// allow debugger during development
2119
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
2220
// This rule is required because atom vue-format package remove the space
23-
'space-before-function-paren': 0,
24-
// Turn off vuejs rules, not because ther are not good, but mostly because
25-
// they are very present in initial code base.. Maybe we should clean that up someday..
26-
'vue/max-attributes-per-line': 'off',
27-
'vue/require-prop-types': 'off'
21+
'space-before-function-paren': 0
2822
}
2923
}

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"express": "^4.16.2",
3030
"nuxt-edge": "^2.0.0-25440915.dcc92c6",
3131
"simple-directory-client-express": "^0.7.1",
32-
"simple-directory-client-nuxt": "^0.5.0",
32+
"simple-directory-client-nuxt": "^0.8.0",
3333
"vuetify": "^1.0.6"
3434
}
3535
}

0 commit comments

Comments
 (0)