forked from iiitv/algos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coafile
More file actions
45 lines (37 loc) · 628 Bytes
/
.coafile
File metadata and controls
45 lines (37 loc) · 628 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
# coafile for this project
# please add more settings beneath
# Local fixing
# coala --apply-patches -n
# python files should only use spaces
[Python Spacing]
files = **/*.py
bears = SpaceConsistencyBear
use_spaces = True
# golint
# [Golint]
# files = **/*.go
# bears = GoLintBear
# gofmt
[Gofmt]
files = **/*.go
bears = GofmtBear
# python lint
[pep8]
files = **/*.py
bears = PEP8Bear
# Haskell
[haskell]
files = **/*.hs
bears = HaskellLintBear
# hlint
[hlint]
files = **/*.hs
bears = GhcModBear
# JavaScript
[happiness]
files = **/*.js
bears = HappinessLintBear
# CSharp
[csharp]
files = **/*.cs
bears = CSharpLintBear