From 91d99aa32176539004fa1a4b2d81f141c6695b1b Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Thu, 19 Jul 2018 07:48:57 -0500 Subject: [PATCH] Apply standard/enforced code format with prettier. This commit marks applying prettier to the whole of git history up to this point and prettier is used to enforce format via pre-commit hook. The command used was: `git filter-branch -f --tree-filter 'prettier --no-config --single-quote --tab-width=1 --print-width=100 --use-tabs --trailing-comma=none --prose-wrap=always --write "{.,{packages,bin}/**}/*.{js,json,md}" || echo "Error formatting, possibly invalid JS"' -- --all` --- README.md | 8 ++++---- package.json | 8 ++++++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 97b0e41..94d549f 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ container. FRPTools is the result of years of learning from the following projects: -* [KnockoutJS](http://knockoutjs.com/) -* [Overture](https://github.com/fastmail/overture) -* [Redux](https://redux.js.org/) -* [Mithril](https://mithril.js.org/) +- [KnockoutJS](http://knockoutjs.com/) +- [Overture](https://github.com/fastmail/overture) +- [Redux](https://redux.js.org/) +- [Mithril](https://mithril.js.org/) diff --git a/package.json b/package.json index 4c1b8e4..6e7dac0 100644 --- a/package.json +++ b/package.json @@ -3,12 +3,16 @@ "version": "3.2.1", "description": "Observable Property and Computed data streams", "main": "src/index.js", - "files": ["src"], + "files": [ + "src" + ], "scripts": { "test": "node ../../bin/runTests.js ./", "pre-commit": "npm run test" }, - "keywords": ["reactive"], + "keywords": [ + "reactive" + ], "author": "Timothy Farrell (https://github.com/explorigin)", "license": "Apache-2.0" }