From 567bb4745b7f742382b29e7e1e773e30fce7f50d Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Thu, 10 May 2018 14:26:17 +0700 Subject: [PATCH 1/3] apply .gitattributes to not include dev files on when install/update with --prefer-dist --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..01e84fd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +/.gitattributes export-ignore +/.gitignore export-ignore +/.styleci.yml export-ignore +/.travis.yml export-ignore +/test/ export-ignore \ No newline at end of file From cff3710dde9b7bdda4b2ad432ac218cc6292bea2 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Thu, 10 May 2018 14:28:27 +0700 Subject: [PATCH 2/3] remove linting config --- .styleci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.styleci.yml b/.styleci.yml index 048d01f..2685bdd 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,7 +1,5 @@ preset: recommended -linting: true - enabled: - strict - unalign_double_arrow From eed7d3eeaf1b374af5f7f64921c4f679bc39e645 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Thu, 10 May 2018 14:32:21 +0700 Subject: [PATCH 3/3] exclude CONTRIBUTING.md as well --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 01e84fd..9ab0e7c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,4 +2,5 @@ /.gitignore export-ignore /.styleci.yml export-ignore /.travis.yml export-ignore -/test/ export-ignore \ No newline at end of file +/test/ export-ignore +/CONTRIBUTING.md export-ignore \ No newline at end of file