diff options
author | Profpatsch <mail@profpatsch.de> | 2024-10-04T18·35+0200 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2024-10-05T13·49+0000 |
commit | 9c8087d705456ab6a0ec12a30a63e54cf3d8b0f2 (patch) | |
tree | e4ef715fdffb4857dd48a6828c25fd0da4e88421 /users/Profpatsch/package.json | |
parent | 9c1e3687fe90bb30129b40c89bb7ea29d648c4d1 (diff) |
feat(users/Profpatsch): move eslint & prettier to toplevel r/8770
the linters & prettier config should apply to my whole subdir. This is somewhat nasty, you have to `npm` in the toplevel dir before it starts working, otoh dev tooling is dev time and I’m working on these alone. Change-Id: I96721f549b24a40b7ffbb2d310f37a40d2590b2b Reviewed-on: https://cl.tvl.fyi/c/depot/+/12573 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/package.json')
-rw-r--r-- | users/Profpatsch/package.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/users/Profpatsch/package.json b/users/Profpatsch/package.json new file mode 100644 index 000000000000..42bbc52ebfdf --- /dev/null +++ b/users/Profpatsch/package.json @@ -0,0 +1,17 @@ +{ + "name": "profpatsch", + "version": "1.0.0", + "description": "Welcome, Welcome.", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "MIT", + "devDependencies": { + "@eslint/js": "^9.11.1", + "@types/eslint__js": "^8.42.3", + "@typescript-eslint/parser": "^8.8.0", + "eslint": "^9.11.1", + "typescript-eslint": "^8.8.0" + } +} |