Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
chore: merge branch 'feature/context-cache'
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimarimon committed Aug 14, 2023
2 parents 76f5ac5 + 0f7506e commit d480974
Show file tree
Hide file tree
Showing 236 changed files with 1,749 additions and 1,293 deletions.
29 changes: 21 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,29 @@
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint", "sonarjs"],
"plugins": [
"@typescript-eslint",
"import",
"sonarjs"
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts"]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "./tsconfig.json"
}
}
},
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:sonarjs/recommended",
"prettier"
"plugin:sonarjs/recommended"
],
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
Expand Down Expand Up @@ -254,12 +265,14 @@
],
"@typescript-eslint/padding-line-between-statements": [
"error",
{ "blankLine": "always", "prev": "import", "next": "*" },
{ "blankLine": "any", "prev": "import", "next": "import" },
{ "blankLine": "always", "prev": "*", "next": ["class", "if", "while", "switch", "try"] },
{ "blankLine": "always", "prev": ["class", "if", "while", "switch", "try"], "next": "*" },
{ "blankLine": "always", "prev": "*", "next": ["class"] },
{ "blankLine": "always", "prev": ["class"], "next": "*" },
{ "blankLine": "always", "next": "*", "prev": "block-like" }
]
],
"import/newline-after-import": ["error", { "count": 2 }],
"import/default": "off",
"import/named": "off",
"import/no-named-as-default-member": "off"
}
}
]
Expand Down
57 changes: 0 additions & 57 deletions .prettierignore

This file was deleted.

12 changes: 0 additions & 12 deletions .prettierrc.json

This file was deleted.

4 changes: 4 additions & 0 deletions docs/overview.njk
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ module: overview
<li>
<a href="https://ng-doc.com/" class="prose" target="_blank">NgDoc</a>
</li>

<li>
<a href="https://starlight.astro.build/" class="prose" target="_blank">Starlight</a>
</li>
</ul>

<p class="text text-md">
Expand Down
Loading

0 comments on commit d480974

Please sign in to comment.