Questions tagged [coala-bears]

coala-bears are routines used by coala package to check lints and fix issue if found.

coala-bears are routines for defining certain quality requirements in various languages. Many of these plugins for various languages are shipped along with coala (coala: Language Independent Code Analysis)

The checking routines are named Bears in coala. You can easily define a simple project file to check your project with all bears either shipped with coala or ones you found in the internet and trust.

3 questions
0
votes
1 answer

Write a `long line test` for visual basic in python (`LineLengthBear` of coala)

Here's my code, invalid_VB_file = """ 'C' * (65535 + 1) """ LineLengthBearLangSpecificAspectTest = verify_local_bear( LineLengthBear, valid_files=(test_file,), invalid_files=(invalid_VB_file,), aspects=AspectList([ …
0
votes
0 answers

Unable to install coala-bears cloned from the repository with pip install

I created two repositories local one coala & coala-bears after cloning from * git@github.com:coala/coala.git * git@github.com:coala/coala-bears.git cd into coala-bears folder on windows 7 64 bit issued "command pip install ." Got a para of errors…
bhagi
  • 56
  • 6
0
votes
1 answer

Checking result by applying bear on file

when i tried to check the bear results for a python file by using coala --bears AnnotationBear -f add.py --save and when it asked for setting language- give "python", then on checking .coafile i didn't find any result that AnnotationBear has to…