
* #99 - ui changes * #99 - logo fix * #99 - tailwind plugin for eslint * #99 - fix * #99 - fix * #99 - fix pagination * #99 - fix logo Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
26 lines
725 B
JavaScript
26 lines
725 B
JavaScript
module.exports = {
|
|
plugins: ['tailwindcss'],
|
|
env: {
|
|
node: true,
|
|
'vue/setup-compiler-macros': true,
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
],
|
|
rules: {
|
|
semi: [2, 'never'],
|
|
quotes: ['error', 'single'],
|
|
indent: ['error', 2],
|
|
'vue/html-indent': ['error', 2],
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'object-curly-spacing': ['error', 'always'],
|
|
'vue/require-default-prop': 0,
|
|
'tailwindcss/classnames-order': 'error',
|
|
'tailwindcss/enforces-negative-arbitrary-values': 'error',
|
|
'tailwindcss/enforces-shorthand': 'error',
|
|
'tailwindcss/no-arbitrary-value': 'error',
|
|
'tailwindcss/no-contradicting-classname': 'error',
|
|
},
|
|
}
|