├── .babelrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── flow-typed └── npm │ ├── babel-cli_vx.x.x.js │ ├── babel-core_vx.x.x.js │ ├── babel-eslint_vx.x.x.js │ ├── babel-plugin-transform-react-jsx_vx.x.x.js │ ├── babel-plugin-transform-runtime_vx.x.x.js │ ├── babel-polyfill_vx.x.x.js │ ├── babel-preset-env_vx.x.x.js │ ├── babel-preset-es2015_vx.x.x.js │ ├── babel-preset-flow_vx.x.x.js │ ├── babel-preset-stage-2_vx.x.x.js │ ├── eslint-plugin-babel_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── husky_vx.x.x.js │ ├── jest_v19.x.x.js │ ├── jest_vx.x.x.js │ ├── lang-detector_vx.x.x.js │ ├── lint-staged_vx.x.x.js │ ├── micro-dev_vx.x.x.js │ ├── micro_vx.x.x.js │ ├── prettier_vx.x.x.js │ ├── rimraf_v2.x.x.js │ └── rimraf_vx.x.x.js ├── package.json ├── src ├── index.js └── test │ └── index.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/README.md -------------------------------------------------------------------------------- /flow-typed/npm/babel-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-core_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-react-jsx_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-plugin-transform-react-jsx_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-polyfill_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-polyfill_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-env_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-preset-env_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-es2015_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-preset-es2015_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-flow_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-preset-flow_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-stage-2_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/babel-preset-stage-2_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-babel_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/eslint-plugin-babel_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/husky_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/husky_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v19.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/jest_v19.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/jest_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lang-detector_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/lang-detector_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lint-staged_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/lint-staged_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/micro-dev_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/micro-dev_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/micro_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/micro_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/rimraf_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/rimraf_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/rimraf_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/flow-typed/npm/rimraf_vx.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/src/index.js -------------------------------------------------------------------------------- /src/test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/src/test/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-code-analyser/HEAD/yarn.lock --------------------------------------------------------------------------------