Skip to content

Commit 3b8e0b6

Browse files
dev deps
1 parent 0bb5f7e commit 3b8e0b6

File tree

3 files changed

+35
-17
lines changed

3 files changed

+35
-17
lines changed

.editorconfig

Lines changed: 0 additions & 12 deletions
This file was deleted.

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/@directus/shared/.editorconfig

.stylelintrc.json

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,43 @@
11
{
2-
"extends": ["stylelint-config-standard", "stylelint-config-rational-order", "stylelint-config-prettier"],
3-
"plugins": ["stylelint-order", "stylelint-scss"],
2+
"extends": [
3+
"stylelint-config-standard",
4+
"stylelint-config-rational-order",
5+
"stylelint-config-prettier"
6+
],
7+
"plugins": [
8+
"stylelint-order",
9+
"stylelint-scss"
10+
],
411
"rules": {
512
"indentation": "tab",
6-
"order/order": ["dollar-variables", "custom-properties", "declarations", "at-variables", "rules"],
13+
"order/order": [
14+
"dollar-variables",
15+
"custom-properties",
16+
"declarations",
17+
"at-variables",
18+
"rules"
19+
],
720
"at-rule-no-unknown": null,
821
"scss/at-rule-no-unknown": true,
922
"selector-pseudo-class-no-unknown": [
1023
true,
1124
{
12-
"ignorePseudoClasses": ["deep", "slotted", "global"]
25+
"ignorePseudoClasses": [
26+
"deep",
27+
"slotted",
28+
"global"
29+
]
1330
}
1431
],
1532
"string-quotes": "single",
1633
"length-zero-no-unit": null,
1734
"no-descending-specificity": true,
18-
"rule-empty-line-before": ["always", { "except": "first-nested" }],
35+
"rule-empty-line-before": [
36+
"always",
37+
{
38+
"except": "first-nested"
39+
}
40+
],
1941
"block-closing-brace-empty-line-before": "never",
2042
"block-opening-brace-newline-after": "always-multi-line"
2143
}

jsconfig.json renamed to tsconfig.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@
44
"module": "esnext",
55
"strict": true,
66
"jsx": "preserve",
7+
"checkJs": true,
8+
"importHelpers": true,
79
"skipLibCheck": true,
810
"moduleResolution": "node",
911
"esModuleInterop": true,
1012
"allowSyntheticDefaultImports": true,
1113
"resolveJsonModule": true,
1214
"sourceMap": true,
1315
"baseUrl": ".",
16+
"paths": {
17+
"@/*": [
18+
"src/*"
19+
]
20+
},
1421
"lib": [
1522
"esnext",
1623
"dom",

0 commit comments

Comments
 (0)