Updates dependencies whithout all eslint recomendations for now.
This commit is contained in:
parent
e81f72620d
commit
a701d497ab
14
.eslintrc.js
14
.eslintrc.js
|
@ -5,7 +5,7 @@ module.exports = {
|
||||||
'plugin:vue/recommended'
|
'plugin:vue/recommended'
|
||||||
],
|
],
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
'ecmaVersion': 2017
|
'ecmaVersion': 2018
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
// override/add rules settings here, such as:
|
// override/add rules settings here, such as:
|
||||||
|
@ -13,10 +13,20 @@ module.exports = {
|
||||||
'no-console': 'warn',
|
'no-console': 'warn',
|
||||||
'no-unused-vars': 'warn',
|
'no-unused-vars': 'warn',
|
||||||
'no-undef': 'warn',
|
'no-undef': 'warn',
|
||||||
|
'vue/no-v-html': 'off',
|
||||||
'vue/html-indent': 'off',
|
'vue/html-indent': 'off',
|
||||||
'vue/attributes-order': 'off',
|
'vue/attributes-order': 'off',
|
||||||
|
'vue/html-closing-bracket-spacing': 'off',
|
||||||
|
'vue/html-closing-bracket-newline': 'off',
|
||||||
|
'vue/require-prop-type-constructor': 'off',
|
||||||
|
'vue/return-in-computed-property': 'off',
|
||||||
|
'vue/singleline-html-element-content-newline': 'off',
|
||||||
|
'vue/multiline-html-element-content-newline': 'off',
|
||||||
|
'vue/prop-name-casing': 'off',
|
||||||
'vue/no-confusing-v-for-v-if': 'off',
|
'vue/no-confusing-v-for-v-if': 'off',
|
||||||
'vue/require-default-prop': 'off', // https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-default-prop.md
|
'vue/no-use-v-if-with-v-for': 'off',
|
||||||
|
'vue/no-template-shadow': 'off',
|
||||||
|
'vue/require-default-prop': 'off' // https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-default-prop.md
|
||||||
},
|
},
|
||||||
globals: {
|
globals: {
|
||||||
'tainacan_plugin': true,
|
'tainacan_plugin': true,
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -31,13 +31,14 @@
|
||||||
"@babel/core": "^7.1.2",
|
"@babel/core": "^7.1.2",
|
||||||
"@babel/preset-env": "^7.1.0",
|
"@babel/preset-env": "^7.1.0",
|
||||||
"@babel/preset-react": "^7.0.0",
|
"@babel/preset-react": "^7.0.0",
|
||||||
|
"acorn": "^6.0.0",
|
||||||
"autoprefixer": "^9.2.1",
|
"autoprefixer": "^9.2.1",
|
||||||
"babel-loader": "^8.0.4",
|
"babel-loader": "^8.0.4",
|
||||||
"cross-env": "^5.2.0",
|
"cross-env": "^5.2.0",
|
||||||
"css-loader": "^1.0.0",
|
"css-loader": "^1.0.0",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"eslint-loader": "^2.1.1",
|
"eslint-loader": "^2.1.1",
|
||||||
"eslint-plugin-vue": "^4.7.1",
|
"eslint-plugin-vue": "^5.2.3",
|
||||||
"file-loader": "^2.0.0",
|
"file-loader": "^2.0.0",
|
||||||
"postcss-loader": "^3.0.0",
|
"postcss-loader": "^3.0.0",
|
||||||
"sass-loader": "^7.1.0",
|
"sass-loader": "^7.1.0",
|
||||||
|
@ -45,9 +46,9 @@
|
||||||
"terser-webpack-plugin": "^2.3.2",
|
"terser-webpack-plugin": "^2.3.2",
|
||||||
"vue-loader": "^15.4.2",
|
"vue-loader": "^15.4.2",
|
||||||
"vue-template-compiler": "^2.6.11",
|
"vue-template-compiler": "^2.6.11",
|
||||||
"webpack": "^4.41.5",
|
"webpack": "^4.43.0",
|
||||||
"webpack-bundle-analyzer": "^3.3.2",
|
"webpack-bundle-analyzer": "^3.3.2",
|
||||||
"webpack-cli": "^3.1.2",
|
"webpack-cli": "^3.1.2",
|
||||||
"webpack-dev-server": ">=3.1.11"
|
"webpack-dev-server": ">=3.10.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -130,13 +130,13 @@
|
||||||
import { mapActions } from 'vuex';
|
import { mapActions } from 'vuex';
|
||||||
|
|
||||||
import ActivityDetailsModal from '../modals/activity-details-modal.vue';
|
import ActivityDetailsModal from '../modals/activity-details-modal.vue';
|
||||||
import ThreeStateToggleButton from '../other/three-state-toggle-button.vue';
|
// import ThreeStateToggleButton from '../other/three-state-toggle-button.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ActivitiesList',
|
name: 'ActivitiesList',
|
||||||
components: {
|
/*components: {
|
||||||
ThreeStateToggleButton
|
ThreeStateToggleButton
|
||||||
},
|
},*/
|
||||||
props: {
|
props: {
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
totalActivities: 0,
|
totalActivities: 0,
|
||||||
|
|
|
@ -629,8 +629,7 @@
|
||||||
FiltersItemsList,
|
FiltersItemsList,
|
||||||
ItemsStatusTabs,
|
ItemsStatusTabs,
|
||||||
Pagination,
|
Pagination,
|
||||||
AdvancedSearch,
|
AdvancedSearch
|
||||||
ExposersModal
|
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
collectionId: Number
|
collectionId: Number
|
||||||
|
|
|
@ -326,7 +326,6 @@
|
||||||
FileItem,
|
FileItem,
|
||||||
DocumentItem,
|
DocumentItem,
|
||||||
ActivitiesPage,
|
ActivitiesPage,
|
||||||
ExposersModal,
|
|
||||||
AttachmentsList
|
AttachmentsList
|
||||||
},
|
},
|
||||||
mixins: [formHooks],
|
mixins: [formHooks],
|
||||||
|
|
Loading…
Reference in New Issue