Skip to content

Commit 12ba7b1

Browse files
committed
Switched to modern tools
1 parent 14705fa commit 12ba7b1

File tree

6 files changed

+111
-108
lines changed

6 files changed

+111
-108
lines changed

.vscode/settings.json

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
{
2-
"biome.enabled": true,
3-
"editor.defaultFormatter": "biomejs.biome",
4-
"editor.formatOnSave": true,
5-
"javascript.format.enable": false,
6-
"javascript.suggest.autoImports": true,
7-
"javascript.suggest.paths": true,
8-
"typescript.format.enable": false,
9-
"typescript.suggest.paths": true,
10-
"typescript.suggest.autoImports": true,
11-
"editor.renderWhitespace": "all",
12-
"editor.rulers": [120, 160],
13-
"editor.codeActionsOnSave": {
14-
"source.fixAll": "always",
15-
"source.organizeImports": "never",
16-
"source.organizeImports.biome": "always",
17-
"quickfix.biome": "always"
18-
},
19-
"editor.insertSpaces": false,
20-
"editor.detectIndentation": true,
21-
"editor.trimAutoWhitespace": true,
22-
"files.trimTrailingWhitespace": true,
23-
"files.trimTrailingWhitespaceInRegexAndStrings": true,
24-
"files.trimFinalNewlines": true,
25-
"explorer.fileNesting.patterns": {
26-
"*.ts": "${basename}.*.${extname}",
27-
".env": ".env.*",
28-
"*.tsx": "${basename}.*.${extname},${basename}.*.ts",
29-
"package.json": "*.json, *.yml, *.config.js, *.config.ts, *.yaml"
30-
},
31-
"eslint.enable": false,
32-
"eslint.format.enable": false,
33-
"prettier.enable": false
2+
"biome.enabled": true,
3+
"editor.defaultFormatter": "biomejs.biome",
4+
"editor.formatOnSave": true,
5+
"javascript.format.enable": false,
6+
"javascript.suggest.autoImports": true,
7+
"javascript.suggest.paths": true,
8+
"typescript.format.enable": false,
9+
"typescript.suggest.paths": true,
10+
"typescript.suggest.autoImports": true,
11+
"editor.renderWhitespace": "all",
12+
"editor.rulers": [120, 160],
13+
"editor.codeActionsOnSave": {
14+
"source.fixAll": "always",
15+
"source.organizeImports": "never",
16+
"source.organizeImports.biome": "always",
17+
"quickfix.biome": "always"
18+
},
19+
"editor.insertSpaces": false,
20+
"editor.detectIndentation": true,
21+
"editor.trimAutoWhitespace": true,
22+
"files.trimTrailingWhitespace": true,
23+
"files.trimTrailingWhitespaceInRegexAndStrings": true,
24+
"files.trimFinalNewlines": true,
25+
"explorer.fileNesting.patterns": {
26+
"*.ts": "${basename}.*.${extname}",
27+
".env": ".env.*",
28+
"*.tsx": "${basename}.*.${extname},${basename}.*.ts",
29+
"package.json": "*.json, *.yml, *.config.js, *.config.ts, *.yaml"
30+
},
31+
"eslint.enable": false,
32+
"eslint.format.enable": false,
33+
"prettier.enable": false
3434
}

biome.json

+57-54
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,58 @@
11
{
2-
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3-
"vcs": {
4-
"enabled": true,
5-
"clientKind": "git",
6-
"defaultBranch": "main",
7-
"useIgnoreFile": true
8-
},
9-
"formatter": {
10-
"enabled": true,
11-
"formatWithErrors": false,
12-
"indentStyle": "tab",
13-
"lineEnding": "lf",
14-
"lineWidth": 120
15-
},
16-
"organizeImports": {
17-
"enabled": true
18-
},
19-
"linter": {
20-
"enabled": true,
21-
"rules": {
22-
"recommended": true,
23-
"suspicious": {
24-
"recommended": true
25-
},
26-
"style": {
27-
"recommended": true
28-
},
29-
"complexity": {
30-
"recommended": true
31-
},
32-
"security": {
33-
"recommended": true
34-
},
35-
"performance": {
36-
"recommended": true
37-
},
38-
"correctness": {
39-
"recommended": true
40-
},
41-
"a11y": {
42-
"recommended": true
43-
},
44-
"nursery": {
45-
"recommended": true
46-
}
47-
}
48-
},
49-
"javascript": {
50-
"formatter": {
51-
"semicolons": "asNeeded",
52-
"trailingCommas": "es5"
53-
}
54-
}
55-
}
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"defaultBranch": "main",
7+
"useIgnoreFile": true
8+
},
9+
"formatter": {
10+
"ignore": ["test-apps"],
11+
"enabled": true,
12+
"formatWithErrors": false,
13+
"indentStyle": "tab",
14+
"lineEnding": "lf",
15+
"lineWidth": 120
16+
},
17+
"organizeImports": {
18+
"ignore": ["test-apps"],
19+
"enabled": true
20+
},
21+
"linter": {
22+
"ignore": ["test-apps"],
23+
"enabled": true,
24+
"rules": {
25+
"recommended": true,
26+
"suspicious": {
27+
"recommended": true
28+
},
29+
"style": {
30+
"recommended": true
31+
},
32+
"complexity": {
33+
"recommended": true
34+
},
35+
"security": {
36+
"recommended": true
37+
},
38+
"performance": {
39+
"recommended": true
40+
},
41+
"correctness": {
42+
"recommended": true
43+
},
44+
"a11y": {
45+
"recommended": true
46+
},
47+
"nursery": {
48+
"recommended": true
49+
}
50+
}
51+
},
52+
"javascript": {
53+
"formatter": {
54+
"semicolons": "asNeeded",
55+
"trailingCommas": "es5"
56+
}
57+
}
58+
}

src/index.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { test } from ".";
1+
import { test } from "."
22

33
describe("test", () => {
4-
it("should work", () => {
5-
expect(test()).toBeUndefined();
6-
});
7-
});
4+
it("should work", () => {
5+
expect(test()).toBeUndefined()
6+
})
7+
})

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This is your packages entry point, everything exported from here will be accessible to the end-user.
2-
export const test = (): void => {};
2+
export const test = (): void => {}

tests/setup.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
// Setup your test environment here
1+
// Setup your test environment here

tsconfig.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"compilerOptions": {
3-
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
4-
"moduleResolution": "Bundler",
5-
"module": "ESNext" /* Specify what module code is generated. */,
6-
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
7-
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
8-
"strict": true /* Enable all strict type-checking options. */,
9-
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
10-
"types": ["vitest/globals"],
11-
"rootDir": ".",
12-
"outDir": "./dist",
13-
"noEmit": true
14-
},
15-
"include": ["src/**/*", "tests/**/*"],
16-
"exclude": ["node_modules", "dist"]
2+
"compilerOptions": {
3+
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
4+
"moduleResolution": "Bundler",
5+
"module": "ESNext" /* Specify what module code is generated. */,
6+
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
7+
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
8+
"strict": true /* Enable all strict type-checking options. */,
9+
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
10+
"types": ["vitest/globals"],
11+
"rootDir": ".",
12+
"outDir": "./dist",
13+
"noEmit": true
14+
},
15+
"include": ["src/**/*", "tests/**/*"],
16+
"exclude": ["node_modules", "dist"]
1717
}

0 commit comments

Comments
 (0)