npm install -g eslint
npm install - -save-dev eslint-config-rallycoding
.eslintrc
| # Pure theme for Hyper | |
| autoload -U promptinit; promptinit | |
| prompt pure | |
| # AutoComplete for Zsh | |
| autoload -Uz compinit && compinit | |
| zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // Upload Hyper to github sync settings | |
| syncSettings: { | |
| quiet: false, | |
| accelerators: { |
| #!/bin/sh | |
| option="${1}" | |
| container=$2 | |
| name=$3 | |
| sample=$4 | |
| case ${option} in | |
| -f) FILE=${name} | |
| echo "Pulling solr 6.4 from dockerhub"$'\n' | |
| docker pull solr:6.4 | |
| echo "Connecting and transferring files to docker image"$'\n' |