Skip to content

Commit bb05272

Browse files
committed
chore(config): update dependencies and linting rules 🐰
- Add bun.lock to gitignore - Add bun engine requirement and @types/bun dependency - Remove method and property naming rules from eslint config - Update eslint and @eslint/js to version 9.38.0 - Update @types/node to version 24.8.1
1 parent a875264 commit bb05272

3 files changed

Lines changed: 6 additions & 15 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ yarn-debug.log*
55
yarn-error.log*
66
package-lock.json
77
yarn.lock
8+
bun.lock
89

910
# Build outputs
1011
dist/

eslint.config.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -191,23 +191,11 @@ export default [
191191
selector: 'interface',
192192
format: ['PascalCase']
193193
},
194-
{
195-
selector: 'method',
196-
format: ['camelCase']
197-
},
198194
{
199195
selector: 'parameter',
200196
format: ['camelCase'],
201197
leadingUnderscore: 'allow'
202198
},
203-
{
204-
selector: 'property',
205-
format: ['camelCase'],
206-
filter: {
207-
regex: '^\\.',
208-
match: false
209-
}
210-
},
211199
{
212200
selector: 'typeAlias',
213201
format: ['PascalCase']

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,13 @@
5555
},
5656
"homepage": "https://github.com/NeaByteLab/TypeScript-Starter#readme",
5757
"devDependencies": {
58-
"@eslint/js": "^9.37.0",
58+
"@eslint/js": "^9.38.0",
59+
"@types/bun": "^1.3.0",
5960
"@types/jest": "^30.0.0",
60-
"@types/node": "^24.7.2",
61+
"@types/node": "^24.8.1",
6162
"@typescript-eslint/eslint-plugin": "^8.46.1",
6263
"@typescript-eslint/parser": "^8.46.1",
63-
"eslint": "^9.37.0",
64+
"eslint": "^9.38.0",
6465
"eslint-config-prettier": "^10.1.8",
6566
"eslint-plugin-security": "^3.0.1",
6667
"eslint-plugin-sonarjs": "^3.0.5",
@@ -73,6 +74,7 @@
7374
"typescript": "^5.9.3"
7475
},
7576
"engines": {
77+
"bun": ">=1.3.0",
7678
"node": ">=22.0.0"
7779
},
7880
"files": [

0 commit comments

Comments
 (0)