Skip to content

Commit 02165be

Browse files
committed
fix: package de sync
1 parent a05f7e7 commit 02165be

File tree

25 files changed

+6621
-13639
lines changed

25 files changed

+6621
-13639
lines changed

src/Resources/app/administration/.eslintrc.js

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
'eslint:recommended',
1313
'plugin:@typescript-eslint/recommended',
1414
'plugin:vue/vue3-recommended',
15+
'prettier',
1516
],
1617
plugins: [
1718
'@typescript-eslint',
@@ -25,24 +26,21 @@ module.exports = {
2526
parser: '@typescript-eslint/parser',
2627
settings: {
2728
'import/resolver': {
28-
node: {},
29-
webpack: {
30-
config: {
31-
resolve: {
32-
extensions: ['.js', '.ts', '.vue', '.json', '.less', '.twig'],
33-
},
34-
},
29+
node: {
30+
extensions: ['.js', '.ts', '.vue', '.json', '.less', '.twig'],
3531
},
3632
},
3733
},
3834
rules: {
39-
indent: ['error', 4, { SwitchCase: 1 }],
4035
quotes: ['error', 'single', { avoidEscape: true }],
4136
semi: ['error', 'always'],
4237
'comma-dangle': ['error', 'always-multiline'],
4338
'max-len': ['error', 125, {
4439
ignoreRegExpLiterals: true,
4540
ignoreComments: false,
41+
ignoreStrings: true,
42+
ignoreTemplateLiterals: true,
43+
ignoreUrls: true,
4644
}],
4745
'no-console': ['error', { allow: ['warn', 'error'] }],
4846
'no-debugger': 'error',
@@ -71,7 +69,6 @@ module.exports = {
7169
files: ['*.ts', '*.vue'],
7270
rules: {
7371
'@typescript-eslint/explicit-module-boundary-types': 'error',
74-
indent: 'off',
7572
},
7673
},
7774
{
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"extends": "stylelint-config-standard-scss",
3+
"ignoreFiles": [
4+
"node_modules/"
5+
],
6+
"rules": {
7+
"indentation": 4,
8+
"color-hex-case": "lower",
9+
"no-missing-end-of-source-newline": true,
10+
"property-no-unknown": [true, {
11+
"severity": "warning",
12+
"ignoreProperties": [
13+
"user-focus",
14+
"user-input",
15+
"user-modify"
16+
]
17+
}],
18+
"no-descending-specificity": null,
19+
"max-nesting-depth": [4, {
20+
"ignore": ["blockless-at-rules", "pseudo-classes"],
21+
"severity": "warning"
22+
}],
23+
"at-rule-no-unknown": null,
24+
"scss/at-rule-no-unknown": true,
25+
"selector-class-pattern": null,
26+
"color-function-notation": "legacy",
27+
"declaration-block-no-redundant-longhand-properties": null,
28+
"scss/no-global-function-names": null,
29+
"property-no-vendor-prefix": null,
30+
"custom-property-pattern": null,
31+
"max-line-length": [
32+
120,
33+
{
34+
"severity": "warning"
35+
}
36+
],
37+
"scss/dollar-variable-pattern": null,
38+
"selector-id-pattern": null,
39+
"keyframes-name-pattern": null
40+
}
41+
}

0 commit comments

Comments
 (0)