Skip to content

Commit 61b910d

Browse files
committed
feat: add eslint-plugin-twl
1 parent 41ac1bb commit 61b910d

File tree

10 files changed

+7120
-0
lines changed

10 files changed

+7120
-0
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
commit-message:
8+
prefix: "chore(deps)"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
node_modules
3+
.DS_Store
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# eslint-plugin-twl
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { config } from "@debbl/eslint-config";
2+
3+
export default config({
4+
typescript: true,
5+
});
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "eslint-plugin-twl",
3+
"type": "module",
4+
"version": "0.0.0",
5+
"packageManager": "pnpm@9.5.0",
6+
"description": "",
7+
"author": "Brendan Dash <me@aiwan.run> (https://aiwan.run)",
8+
"license": "MIT",
9+
"homepage": "https://github.com/Debbl/twl#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/Debbl/twl.git"
13+
},
14+
"bugs": "https://github.com/Debbl/twl/issues",
15+
"keywords": [],
16+
"exports": {
17+
".": {
18+
"types": "./dist/index.d.ts",
19+
"import": "./dist/index.mjs",
20+
"require": "./dist/index.cjs"
21+
}
22+
},
23+
"main": "./dist/index.mjs",
24+
"module": "./dist/index.mjs",
25+
"types": "./dist/index.d.ts",
26+
"typesVersions": {
27+
"*": {
28+
"*": [
29+
"./dist/*",
30+
"./dist/index.d.ts"
31+
]
32+
}
33+
},
34+
"files": [
35+
"dist"
36+
],
37+
"scripts": {
38+
"dev": "pnpm build && node ./dist/index.cjs",
39+
"build": "rimraf dist && rollup -c --configPlugin typescript",
40+
"test": "vitest",
41+
"release": "pnpm build && bumpp && pnpm publish",
42+
"typecheck": "tsc --noEmit",
43+
"lint": "eslint .",
44+
"lint:fix": "eslint . --fix"
45+
}
46+
}

0 commit comments

Comments
 (0)