diff --git a/.eslintrc.js b/.eslintrc.js index 58c9c98..553ac75 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,15 +17,18 @@ module.exports = { "max-len": [ "warn", { - code: 100, - ignoreComments: true, + code: 120, + ignoreComments: true, // why does this not make it allow comment of any length? + ignorePattern: '^\\s*class="[^"]*"$', + ignoreStrings: true, ignoreTemplateLiterals: true, + ignoreTrailingComments: true, ignoreUrls: true, }, ], "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", - "prettier/prettier": ["warn", { printWidth: 100 }], + // "prettier/prettier": ["warn", { printWidth: 120 }], // removes errors but adds thousands of warnings "@typescript-eslint/no-unnecessary-type-constraint": "off", }, }; diff --git a/src/components/PhotoDialog.vue b/src/components/PhotoDialog.vue index ddf07ad..a83890b 100644 --- a/src/components/PhotoDialog.vue +++ b/src/components/PhotoDialog.vue @@ -76,7 +76,8 @@
- 8) Exporting backups
This app focuses on gifts & gratitude, using them to build cool things together with your network. diff --git a/src/views/NewEditProjectView.vue b/src/views/NewEditProjectView.vue index 759ea39..c91138d 100644 --- a/src/views/NewEditProjectView.vue +++ b/src/views/NewEditProjectView.vue @@ -145,7 +145,10 @@