Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
v8tenko committed Oct 12, 2023
1 parent 7d5c180 commit 5af8a74
Show file tree
Hide file tree
Showing 11 changed files with 13,153 additions and 5,365 deletions.
33 changes: 24 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
{
"extends": ["@yandex-cloud/eslint-config", "@yandex-cloud/eslint-config/prettier"],
"extends": ["@diplodoc/eslint-config", "@diplodoc/eslint-config/prettier"],
"root": true,
"overrides": [{
"files": ["*"],
"rules": {
"@typescript-eslint/no-explicit-any": 2,
"@typescript-eslint/no-namespace": 1,
"no-shadow": "off",
"@typescript-eslint/no-shadow": "off"
"overrides": [
{
"files": ["*"],
"rules": {
"@typescript-eslint/no-explicit-any": 2,
"@typescript-eslint/no-namespace": 1,
"no-shadow": "off",
"@typescript-eslint/no-shadow": "off"
}
},
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": ["./tsconfig.transform.json", "./tsconfig.json"]
}
}
}]
],
"settings": {
"react": {
"version": "detect"
}
}
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
18
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require("@yandex-cloud/prettier-config");
module.exports = require("@diplodoc/prettier-config");
Loading

0 comments on commit 5af8a74

Please sign in to comment.