diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..3c9ff6c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,38 @@ +{ + "name": "@nordcom/prettier", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@nordcom/prettier", + "version": "0.1.0", + "license": "MIT", + "devDependencies": { + "@types/node": "20.5.0", + "prettier": "3.0.2" + } + }, + "node_modules/@types/node": { + "version": "20.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.0.tgz", + "integrity": "sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==", + "dev": true + }, + "node_modules/prettier": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.2.tgz", + "integrity": "sha512-o2YR9qtniXvwEZlOKbveKfDQVyqxbEIWn48Z8m3ZJjBjcCmUy3xZGIv+7AkaeuaTr6yPXJjwv07ZWlsWbEy1rQ==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..e2d9047 --- /dev/null +++ b/package.json @@ -0,0 +1,43 @@ +{ + "name": "@nordcom/prettier", + "version": "0.1.0", + "description": "Prettier code formatting config for all of Nordcom Group Inc.'s projects.", + "main": "prettier.json", + "prettier": "./prettier.json", + "repository": { + "type": "git", + "url": "git+https://github.com/NordcomInc/prettier.git" + }, + "publishConfig": { + "access": "public" + }, + "files": [ + "prettier.json" + ], + "keywords": [ + "prettier", + "prettier-config", + "nordcom" + ], + "author": { + "name": "Nordcom Group Inc.", + "email": "opensource@nordcom.io", + "url": "https://nordcom.io/" + }, + "contributors": [ + { + "name": "Filiph Siitam Sandström", + "email": "filiph@nordcom.io", + "url": "https://github.com/filiphsps/" + } + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/NordcomInc/prettier/issues" + }, + "homepage": "https://github.com/NordcomInc/prettier#readme", + "devDependencies": { + "@types/node": "20.5.0", + "prettier": "3.0.2" + } +} diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..6c7bb4d --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>NordcomInc/renovate-config" + ] +}