Skip to content

Commit

Permalink
Merge pull request #3757 from LibreSign/backport/3755/stable30
Browse files Browse the repository at this point in the history
[stable30] chore: convert indent size
  • Loading branch information
vitormattos authored Sep 23, 2024
2 parents e103250 + 9d4206c commit 248b4f5
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
module.exports = {
globals: {
appName: true,
},
extends: [
'@nextcloud',
],
rules: {
// production only
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'warn',
'vue/no-unused-components': process.env.NODE_ENV === 'production' ? 'error' : 'warn',
},
overrides: [
{
files: ['src/types/openapi/*.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
quotes: 'off',
'no-multiple-empty-lines': 'off',
'no-use-before-define': 'off',
},
},
],
globals: {
appName: true,
},
extends: [
'@nextcloud',
],
rules: {
// production only
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'warn',
'vue/no-unused-components': process.env.NODE_ENV === 'production' ? 'error' : 'warn',
},
overrides: [
{
files: ['src/types/openapi/*.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
quotes: 'off',
'no-multiple-empty-lines': 'off',
'no-use-before-define': 'off',
},
},
],
}

0 comments on commit 248b4f5

Please sign in to comment.