alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add prettier config and scripts
author
Wesley Finck
date
1 year ago
(Jul 16, 2025, 5:42 PM -0700)
commit
701f4717
701f4717aba099af2b6f6cd3da8b845dcab1437c
parent
e6c67094
e6c670949e9f55f3c0870b0d763216cc240c23df
+21
-1
3 changed files
Expand all
Collapse all
Unified
Split
.prettierignore
.prettierrc
package.json
+9
.prettierignore
View file
Reviewed
···
1
1
+
.aider*
2
2
+
.DS_Store
3
3
+
node_modules
4
4
+
dist/
5
5
+
.env*
6
6
+
!.env.example
7
7
+
.next
8
8
+
.plasmo
9
9
+
build
+9
.prettierrc
View file
Reviewed
···
1
1
+
{
2
2
+
"singleQuote": true,
3
3
+
"trailingComma": "all",
4
4
+
"tabWidth": 2,
5
5
+
"semi": true,
6
6
+
"printWidth": 80,
7
7
+
"bracketSpacing": true,
8
8
+
"arrowParens": "always"
9
9
+
}
+3
-1
package.json
View file
Reviewed
···
30
30
"webapp:dev": "cd src/webapp && npm run dev",
31
31
"webapp:extension:dev": "cd src/webapp && npm run dev:extension",
32
32
"webapp:build": "cd src/webapp && npm run build",
33
33
-
"webapp:start": "cd src/webapp && npm run start"
33
33
+
"webapp:start": "cd src/webapp && npm run start",
34
34
+
"format": "prettier --write .",
35
35
+
"format:check": "prettier --check ."
34
36
},
35
37
"keywords": [],
36
38
"author": "",