Skip to content

Commit f80df33

Browse files
committed
synchronize eslint and prettier
Signed-off-by: dartcafe <[email protected]>
1 parent eb3e91e commit f80df33

File tree

3 files changed

+34
-21
lines changed

3 files changed

+34
-21
lines changed

.eslintrc.cjs

+21-20
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,37 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55
module.exports = {
6-
extends: [
7-
'@nextcloud/eslint-config/vue3',
8-
'prettier',
9-
],
10-
plugins: [
11-
'promise',
12-
],
6+
extends: ['@nextcloud/eslint-config/vue3', 'prettier'],
7+
plugins: ['promise'],
138
rules: {
149
'arrow-body-style': 'error',
15-
"jsdoc/require-jsdoc": ["error" | "warn", {
16-
"publicOnly": {
17-
"ancestorsOnly": true,
10+
'jsdoc/require-jsdoc': [
11+
'error' | 'warn',
12+
{
13+
publicOnly: {
14+
ancestorsOnly: true,
15+
},
1816
},
19-
}],
17+
],
2018
'no-array-constructor': 'error',
2119
'no-continue': 'error',
2220
'no-else-return': ['error', { allowElseIf: false }],
2321
'no-lonely-if': 'error',
2422
'no-negated-condition': 'error',
2523
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
2624
'prefer-template': 'error',
27-
'vue/script-indent': ['error', 'tab', {
28-
baseIndent: 1,
29-
switchCase: 1,
30-
}],
25+
'vue/first-attribute-linebreak': [
26+
'error',
27+
{ multiline: 'below', singleline: 'ignore' },
28+
],
3129
'vue/no-v-model-argument': 'off',
32-
'vue/no-unused-properties': ['error', {
33-
groups: ['props', 'data', 'computed', 'methods'],
34-
deepData: true,
35-
ignorePublicMembers: true,
36-
}],
30+
'vue/no-unused-properties': [
31+
'error',
32+
{
33+
groups: ['props', 'data', 'computed', 'methods'],
34+
deepData: true,
35+
ignorePublicMembers: true,
36+
},
37+
],
3738
},
3839
}

.prettierignore

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
**/.svn
66
**/.hg
77

8+
# Github workflows
9+
.github/workflows/
10+
811
# 3rdparty dependencies
912
**/node_modules
1013
**/vendor
@@ -13,12 +16,20 @@
1316
# Compiled JS output
1417
js/
1518

19+
# Handled by transifex
20+
l10n/
21+
22+
# OpenAPI
23+
openapi.json
24+
1625
# PHP
1726
appinfo/
1827
lib/
1928
tests/
2029
templates/
2130
**/*.php
31+
composer.json
32+
composer.lock
2233

2334
# individual files
2435
screenshots/

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@
1212
"url": "git+https://github.com/nextcloud/polls.git"
1313
},
1414
"license": "AGPL-3.0",
15+
"type": "module",
1516
"main": "src/main.js",
1617
"scripts": {
1718
"build": "vite --mode production build",
1819
"dev": "NODE_ENV=development vite --mode development build",
1920
"dev:win": "set NODE_ENV=development && vite --mode development build",
2021
"format": "prettier --check .",
22+
"format:fix": "prettier --write .",
2123
"lint": "eslint --ext .js,.vue src",
2224
"lint:fix": "eslint --ext .js,.vue src --fix",
2325
"stylelint": "stylelint src/**/*{.scss,.vue,.css}",
@@ -75,7 +77,6 @@
7577
"node": "^20.0.0",
7678
"npm": "^10.0.0"
7779
},
78-
"type": "module",
7980
"authors": [
8081
{
8182
"name": "Vinzenz Rosenkranz",

0 commit comments

Comments
 (0)