Add PWA support
This commit is contained in:
parent
b959371784
commit
f3ccfcbe48
17 changed files with 893 additions and 308 deletions
|
|
@ -24,10 +24,22 @@ module.exports = {
|
|||
'vue/no-v-html': 'off', // TODO: tackle this properly
|
||||
'vue/no-use-v-if-with-v-for': 'off',
|
||||
|
||||
'@typescript-eslint/ban-ts-comment': 'off',
|
||||
// NOTE: Handled by typescript
|
||||
'no-undef': 'off',
|
||||
'no-unused-vars': 'off',
|
||||
|
||||
// TODO (wvffle): Migrate to VUI
|
||||
// We're using `// @ts-ignore` in jQuery extensions
|
||||
// and gettext for vue 2
|
||||
'@typescript-eslint/ban-ts-comment': 'off',
|
||||
|
||||
// TODO (wvffle): Enable typescript rules later
|
||||
'@typescript-eslint/no-this-alias': 'off',
|
||||
'@typescript-eslint/no-empty-function': 'off'
|
||||
'@typescript-eslint/no-empty-function': 'off',
|
||||
'@typescript-eslint/no-unused-vars': 'off',
|
||||
|
||||
// TODO (wvffle): Migration to pinia
|
||||
// Vuex 3 store does not have types defined, hence we use `any`
|
||||
'@typescript-eslint/no-explicit-any': 'off'
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue