Initial commit
This commit is contained in:
27
.eslintrc.cjs
Normal file
27
.eslintrc.cjs
Normal file
@@ -0,0 +1,27 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
extends: [
|
||||
'@nuxtjs/eslint-config',
|
||||
'@nuxtjs/eslint-config-typescript',
|
||||
'plugin:jsonc/recommended-with-jsonc'
|
||||
],
|
||||
ignorePatterns: [
|
||||
'assets/',
|
||||
'**/*.svg',
|
||||
'**/*.png',
|
||||
'**/*.md',
|
||||
'i',
|
||||
'cert/',
|
||||
'android',
|
||||
'ios',
|
||||
'Dockerfile*',
|
||||
'*.dev',
|
||||
'*.ts'
|
||||
],
|
||||
rules: {
|
||||
'vue/singleline-html-element-content-newline': 'off',
|
||||
'vue/singleline-html-element-content-whitespace': 'off',
|
||||
'vue/no-v-html': 'error', // Verhindert unsicheres HTML
|
||||
'@typescript-eslint/no-unused-vars': 0
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user