Basic UI rework
This commit is contained in:
@ -26,14 +26,14 @@ module.exports = {
|
||||
// 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
|
||||
|
||||
'standard'
|
||||
|
||||
|
||||
],
|
||||
|
||||
plugins: [
|
||||
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-files
|
||||
// required to lint *.vue files
|
||||
'vue',
|
||||
|
||||
|
||||
],
|
||||
|
||||
globals: {
|
||||
@ -51,7 +51,7 @@ module.exports = {
|
||||
|
||||
// add your custom rules here
|
||||
rules: {
|
||||
|
||||
|
||||
// allow async-await
|
||||
'generator-star-spacing': 'off',
|
||||
// allow paren-less arrow functions
|
||||
@ -68,8 +68,12 @@ module.exports = {
|
||||
'import/extensions': 'off',
|
||||
'import/no-unresolved': 'off',
|
||||
'import/no-extraneous-dependencies': 'off',
|
||||
|
||||
|
||||
'prefer-promise-reject-errors': 'off',
|
||||
'prefer-const': 'off',
|
||||
'no-unused-vars': 'off',
|
||||
'no-trailing-spaces' : 'off',
|
||||
'vue/multi-word-component-names' : 'off',
|
||||
|
||||
// allow debugger during development only
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
||||
|
Reference in New Issue
Block a user