1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# ignore file for `prettier`
#
# update: wget -O .prettierignore https://git.io/fjVj5
# document: https://prettier.io/docs/en/ignore.html#ignoring-files
#
# also prettier dot files
!.*
# vendors
**/node_modules/**
**/vendors/**
**/vendor/**
**/third-party/**
# build file
**/dist/**
**/*.min.*
# fixtures
**/fixtures/**
# test
.nyc_output/**
coverage/**
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# yarn
.yarn
# project glob
|