[READ-ONLY] Mirror of https://github.com/danielroe/armada-js. armada-js.vercel.app
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: init

Daniel Roe (Oct 5, 2023, 7:56 AM +0200) 4e6901e0

+22
+3
.gitignore
··· 1 + .nitro 2 + .output 3 + node_modules
+12
package.json
··· 1 + { 2 + "name": "armada-js", 3 + "version": "1.0.0", 4 + "description": "", 5 + "main": "index.js", 6 + "scripts": { 7 + "test": "echo \"Error: no test specified\" && exit 1" 8 + }, 9 + "keywords": [], 10 + "author": "", 11 + "license": "ISC" 12 + }
+7
prettier.config.cjs
··· 1 + module.exports = { 2 + semi: false, 3 + singleQuote: true, 4 + printWidth: 100, 5 + trailingComma: 'es5', 6 + arrowParens: 'avoid', 7 + }