Skip to content

Commit 26df724

Browse files
committed
chore: updated libs, added new common configs
1 parent e75e08b commit 26df724

File tree

1,568 files changed

+18194
-6375
lines changed

Some content is hidden

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

1,568 files changed

+18194
-6375
lines changed

.depcheckrc.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://json.schemastore.org/typings?mark=autogenerated",
3+
"ignores": [
4+
"@alexaegis/ts",
5+
"@alexaegis/setup-*",
6+
"@alexaegis/nuke",
7+
"@alexaegis/nuke",
8+
"@alexaegis/coverage-tools",
9+
"@alexaegis/stylelint-config",
10+
"@types/eslint",
11+
"@tsconfig/svelte",
12+
"@types/node",
13+
"@commitlint/config-conventional",
14+
"remark",
15+
"svelte",
16+
"commit-and-tag-version",
17+
"stylelint-config-standard",
18+
"npm-check-updates",
19+
"stylelint",
20+
"postcss-scss",
21+
"concurrently",
22+
"nodemon",
23+
"husky",
24+
"@typescript-eslint/*",
25+
"remark-lint",
26+
"prettier-plugin-svelte",
27+
"@vitest/coverage-c8",
28+
"commitlint",
29+
"depcheck",
30+
"eslint*",
31+
"lint-staged",
32+
"ts-node",
33+
"typedoc",
34+
"typescript",
35+
"vitest"
36+
],
37+
"skip-missing": true
38+
}

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Editor configuration, see https://editorconfig.org
2+
# autogenerated
23
root = true
34

45
[*]

.eslintignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
# autogenerated
2+
13
package-lock.json
24
node_modules
3-
jest.config.js
4-
lint-staged.config.js
5-
svelte.config.js
6-
commitlint.config.js
75
vite.config.ts.*
86
vitest.config.ts.*
7+
shims
8+
typedoc

.eslintrc.cjs

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,14 @@
1+
// autogenerated
2+
3+
/** @type {import('eslint').Linter.Config} */
14
module.exports = {
25
root: true,
3-
parser: '@typescript-eslint/parser',
4-
parserOptions: {
5-
ecmaVersion: 2020,
6-
sourceType: 'module',
7-
project: ['tsconfig.json'],
8-
extraFileExtensions: ['.json'],
9-
tsconfigRootDir: __dirname,
10-
},
11-
env: {
12-
browser: true,
13-
node: true,
14-
},
15-
ignorePatterns: ['dist', 'node_modules', 'typedocs', 'coverage', '!.vscode', '!.github'],
16-
plugins: ['@typescript-eslint'],
17-
extends: [
18-
'eslint:recommended',
19-
'plugin:@typescript-eslint/eslint-recommended',
20-
'plugin:@typescript-eslint/recommended',
21-
'prettier',
22-
],
23-
rules: {
24-
'no-unused-vars': 'off',
25-
'@typescript-eslint/no-unused-vars': [
26-
'warn',
27-
{
28-
varsIgnorePattern: '^_',
29-
argsIgnorePattern: '^_',
30-
},
31-
],
32-
'@typescript-eslint/explicit-member-accessibility': 'off',
33-
'@typescript-eslint/explicit-function-return-type': 'off',
34-
'@typescript-eslint/no-parameter-properties': 'off',
35-
'@typescript-eslint/no-non-null-assertion': 'off',
36-
},
6+
extends: ['@alexaegis/eslint-config-core'],
377
overrides: [
388
{
39-
files: ['*.tsx'],
9+
files: ['*.{ts,js,cts,cjs,mts,mjs,tsx,jsx,svelte}'],
4010
rules: {
41-
'@typescript-eslint/no-unused-vars': 'off',
11+
'unicorn/no-for-loop': 'off',
4212
},
4313
},
4414
],

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# autogenerated
2+
3+
* text=auto eol=lf
4+
core.autocrlf=false

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# autogenerated
2+
3+
name: Bug Report
4+
description: File a bug report
5+
title: '[Bug]: '
6+
labels: ['bug', 'triage']
7+
assignees:
8+
- AlexAegis
9+
body:
10+
- type: markdown
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# autogenerated
2+
3+
name: Feature Request
4+
description: Request a feature
5+
title: '[Bug]: '
6+
labels: ['enhancement']
7+
assignees:
8+
- AlexAegis
9+
body:
10+
- type: markdown

0 commit comments

Comments
 (0)