Skip to content
This repository was archived by the owner on Jan 27, 2018. It is now read-only.

Development Notes

Alex Grant edited this page Apr 11, 2015 · 16 revisions

Development Notes

This page contains notes as a developer I'm collecting as I go.

Code Analysis

To get an additional opinion on the static analysis, I ran Plato against the project. I'm new to Codacy, so this was an step that connected past tools with the new.

Plato

I'm opting for using global plato, npm install -g plato, to keep development tools running on git hooks, cloud based, and out of the project source as much as possible. Referring to plato analysis is just putting a past perspective forward on the state of the source for me. Here is the main command I used to generate the report (run from the project root directory):

plato -r -d reports/plato -l .jshintrc -t "Flux-React-Example" -x 'node_modules\/*|dist\/*|assets\/*|reports\/*|tmp\/*|Gruntfile.js' ./**

Clone this wiki locally