Skip to content

Commit 1a3154d

Browse files
authored
feat!: update to uikit 6 (#789)
1 parent 0403823 commit 1a3154d

File tree

500 files changed

+7339
-5985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

500 files changed

+7339
-5985
lines changed

.eslintrc

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
{
2-
"extends": ["@gravity-ui/eslint-config", "@gravity-ui/eslint-config/prettier"],
2+
"extends": [
3+
"@gravity-ui/eslint-config",
4+
"@gravity-ui/eslint-config/import-order",
5+
"@gravity-ui/eslint-config/prettier",
6+
],
37
"root": true,
48
"overrides": [
59
{
610
"files": ["config-overrides.js", "commitlint.config.js"],
711
"env": {
8-
"node": true
9-
}
10-
}
11-
]
12+
"node": true,
13+
},
14+
},
15+
],
16+
"parserOptions": {
17+
"project": "./tsconfig.json",
18+
},
19+
"rules": {
20+
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
21+
"@typescript-eslint/consistent-type-imports": [
22+
"error",
23+
{"prefer": "type-imports", "fixStyle": "separate-type-imports"},
24+
],
25+
},
1226
}

.husky/commit-msg

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
npx commitlint --edit $1
1+
npx commitlint --edit $1

.husky/pre-commit

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
npx lint-staged
1+
npx lint-staged

.stylelintrc

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"@gravity-ui/stylelint-config/prettier"
66
],
77
"rules": {
8-
"declaration-colon-space-after": "always-single-line",
98
"declaration-no-important": null
109
}
1110
}

0 commit comments

Comments
 (0)