From a8386506c8c76658057b83404d28b2027ccd95f5 Mon Sep 17 00:00:00 2001 From: Anthony Veaudry Date: Fri, 7 Aug 2020 09:36:42 +0300 Subject: [PATCH 1/4] updates CONTRIBUTING.md Signed-off-by: Anthony Veaudry --- CONTRIBUTING.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 99802eb..33d3fc4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,3 +14,17 @@ The animations in Animate.css should follow a few key principles: - **Animations should be helpful.** They should be designed to guide users to a point of interest, ease natural reading order, or to communicate relationships between elements. - **Animations should feel familial.** Avoid introducing animations that feel out-of-place compared to the existing set. - **Animations should feel natural.** Animations should reflect, as much as is reasonable, motion that occurs in natural physics. Avoid extreme timing functions, and model animations on real-world events. + +## Code Styling + +1. Match the naming convention (camelCase, categorized [fades, bounces, etc]) +2. Indent with two spaces +3. End each file with a blank line + +## How To Contribute + +1. [Fork](https://help.github.com/articles/fork-a-repo/) the project +2. Create a new topic branch on your local forked copy +3. Push your topic branch up to your fork +4. Create a [pen](https://codepen.io/) demonstrating what yor change will do. +5. [Open a Pull Request](https://help.github.com/articles/about-pull-requests/) with a clear title and description against the `master` branch. From 1966a6232b5caa7368cb899061d7911c02f026bb Mon Sep 17 00:00:00 2001 From: Anthony Veaudry Date: Wed, 12 Aug 2020 14:23:57 +0300 Subject: [PATCH 2/4] Updates documentation to mention the config files Signed-off-by: Anthony Veaudry --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 33d3fc4..844285b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,6 +20,7 @@ The animations in Animate.css should follow a few key principles: 1. Match the naming convention (camelCase, categorized [fades, bounces, etc]) 2. Indent with two spaces 3. End each file with a blank line +4. Please use the configurations in .editorconfig and .prettierrc to help keeps styling consistant. ## How To Contribute From f8a2597dde1cc1d2ebd7ae68d3ed6aba4de92817 Mon Sep 17 00:00:00 2001 From: Anthony Veaudry Date: Wed, 12 Aug 2020 14:24:20 +0300 Subject: [PATCH 3/4] updates branch name Signed-off-by: Anthony Veaudry --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 844285b..cfcd1d7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -28,4 +28,4 @@ The animations in Animate.css should follow a few key principles: 2. Create a new topic branch on your local forked copy 3. Push your topic branch up to your fork 4. Create a [pen](https://codepen.io/) demonstrating what yor change will do. -5. [Open a Pull Request](https://help.github.com/articles/about-pull-requests/) with a clear title and description against the `master` branch. +5. [Open a Pull Request](https://help.github.com/articles/about-pull-requests/) with a clear title and description against the `main` branch. From de43da2b6f0975eae3b4f79ee2c6f7883d3d01bf Mon Sep 17 00:00:00 2001 From: Anthony Veaudry Date: Thu, 13 Aug 2020 09:59:06 +0300 Subject: [PATCH 4/4] updates documentation regarding linting Signed-off-by: Anthony Veaudry --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cfcd1d7..0d7a0aa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,7 +20,7 @@ The animations in Animate.css should follow a few key principles: 1. Match the naming convention (camelCase, categorized [fades, bounces, etc]) 2. Indent with two spaces 3. End each file with a blank line -4. Please use the configurations in .editorconfig and .prettierrc to help keeps styling consistant. +4. Make sure you have an editorconfig plugin/extension enabled in your editor and all the dependencies installed so editorconfig and prettier can automatically format your code when committing. ## How To Contribute