[dev-gnome-web] Add .coafile



commit c50788a073b6adf43bbef03d834386240b162891
Author: Lasse Schuirmann <lasse schuirmann gmail com>
Date:   Thu Jan 28 11:54:00 2016 +0100

    Add .coafile

 .coafile |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)
---
diff --git a/.coafile b/.coafile
new file mode 100644
index 0000000..8a43c70
--- /dev/null
+++ b/.coafile
@@ -0,0 +1,38 @@
+[Default]  # All those settings are inherited to all sections
+ignore = client/vendor/**, migrations/**, docs/**
+
+[autopep8]
+files = **/*.py
+bears = PEP8Bear
+default_actions = PEP8Bear: ApplyPatchAction
+
+[autofixotherpython]  # New section to avoid conflicts with autopep8
+files = **/*.py
+bears = PyImportSortBear, PyUnusedCodeBear
+default_actions =
+    PyImportSortBear: ApplyPatchAction,
+    PyUnusedCodeBear: ApplyPatchAction
+
+[python]
+files = **/*.py
+bears = PEP8Bear, PyLintBear
+use_spaces = True
+# The following yield false positives in PyLint, e.g. it doesn't understand some
+# of the Flask magic.
+pylint_disable = R0903, C0103, E1101, E1120
+
+[json]
+bears = JSONFormatBear
+files = **/*.json, .bowerrc
+tab_width = 2
+
+[js]
+bears = JSHintBear
+files = **/*.js
+
+[css]
+bears = CSSLintBear
+files = **/*.css
+
+[commits]
+bears = GitCommitBear


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]