UNPKG

eslint-config-get-off-my-lawn-prettier

Version:

A highly opinionated, sharable config of ESLint rules to produce beautiful, readable JavaScript, optimized for seamless use with Prettier.

24 lines (23 loc) 720 B
version: 2 jobs: build: docker: - image: circleci/node:8.12.0 steps: - checkout - restore_cache: name: Restoring dependencies keys: - dependencies-v1-{{ checksum "yarn.lock" }} - run: name: Installing dependencies command: yarn - save_cache: name: Saving dependencies paths: - ~/.cache/yarn - node_modules key: dependencies-v1-{{ checksum "yarn.lock" }} - run: name: Running tests command: yarn test