├── .ci ├── Export-NUnitXml.psm1 ├── Fudge.ps1 ├── FudgeCI.ps1 ├── FudgeGenerateFake.ps1 ├── FudgePostInstall.ps1 ├── Modules │ └── FudgeTools.psm1 ├── PSLint.ps1 ├── PSScriptAnalyzerSettings.psd1 ├── PrepareAVVM.ps1 ├── adjust_version_number.py ├── appveyor.yml ├── check_moban.sh ├── check_setuptools.py ├── check_unsupported.sh ├── choco.config ├── constants.ps1 ├── deploy.pypi.sh ├── deps.ActivePerl-packages.ps1 ├── deps.ActivePerl.ps1 ├── deps.alex.sh ├── deps.apt_get.sh ├── deps.bakalint.sh ├── deps.cabal.sh ├── deps.coala-bears.sh ├── deps.composer-packages.ps1 ├── deps.composer.sh ├── deps.elm.sh ├── deps.flawfinder.sh ├── deps.generic.sh ├── deps.ghc-mod.sh ├── deps.ghc-packages.ps1 ├── deps.go.sh ├── deps.golang-packages.ps1 ├── deps.golang.ps1 ├── deps.infer.sh ├── deps.java.sh ├── deps.julia.jl ├── deps.julia.sh ├── deps.lua.sh ├── deps.minimal.sh ├── deps.node_js.sh ├── deps.nodejs-packages.ps1 ├── deps.objective_c.sh ├── deps.opam.sh ├── deps.perl.sh ├── deps.php.ps1 ├── deps.php.sh ├── deps.pmd.sh ├── deps.pyenv.sh ├── deps.python-packages.ps1 ├── deps.python.ps1 ├── deps.python27.sh ├── deps.python36.sh ├── deps.ruby-packages.ps1 ├── deps.ruby.ps1 ├── deps.ruby.sh ├── deps.tailor.sh ├── generate_bear_metadata.py ├── generate_coverage_thresholds.py ├── generate_package.py ├── get_bears.py ├── get_codecov_tags.py ├── get_cov_args.py ├── get_tests.py ├── refreshenv.sh ├── store_env_in_registry.py ├── travis_extra_globals.sh └── travis_init.ps1 ├── .coafile ├── .codecov.yml ├── .gitattributes ├── .gitignore ├── .moban.dt ├── DESCRIPTION.jj2 ├── Gemfile.jj2 ├── bear-requirements.txt.jj2 ├── bears-appveyor.yml.jj2 ├── bears-setup.cfg.jj2 ├── bears-setup.py.jj2 ├── bears-test-requirements.txt.jj2 ├── bears-travis.yml.jj2 ├── coala-bears.cabal.jj2 ├── package.json.jj2 ├── requirements.txt.jj2 ├── setup.py.in ├── travis-before-install.yaml └── travis-manual-matrix.yaml ├── .moban.yaml ├── .nocover.yaml ├── .travis.yml ├── DESCRIPTION ├── Fudgefile ├── Gemfile ├── LICENSE ├── MANIFEST.in ├── Makefile.PL ├── PULL_REQUEST_TEMPLATE.md ├── README.rst ├── RELEASE_NOTES.rst ├── bear-languages.yaml ├── bear-metadata.yaml ├── bear-requirements.txt ├── bear-requirements.yaml ├── bears ├── Constants.py ├── VERSION ├── __init__.py ├── apertium │ ├── ApertiumLintBear.py │ └── __init__.py ├── c_languages │ ├── ArtisticStyleBear.py │ ├── CPPCheckBear.py │ ├── CPPCleanBear.py │ ├── CPPLintBear.py │ ├── CSecurityBear.py │ ├── CSharpLintBear.py │ ├── ClangBear.py │ ├── ClangComplexityBear.py │ ├── GNUIndentBear.py │ ├── __init__.py │ └── codeclone_detection │ │ ├── ClangASTPrintBear.py │ │ ├── ClangCloneDetectionBear.py │ │ ├── ClangCountVectorCreator.py │ │ ├── ClangCountingConditions.py │ │ ├── ClangFunctionDifferenceBear.py │ │ ├── CloneDetectionRoutines.py │ │ ├── CountVector.py │ │ └── __init__.py ├── cmake │ ├── CMakeLintBear.py │ └── __init__.py ├── coffee_script │ ├── CoffeeLintBear.py │ └── __init__.py ├── configfiles │ ├── DockerfileLintBear.py │ ├── PuppetLintBear.py │ ├── TOMLBear.py │ └── __init__.py ├── css │ ├── CSSAutoPrefixBear.py │ ├── CSSCombBear.py │ ├── CSSLintBear.py │ ├── StyleLintBear.py │ └── __init__.py ├── csv │ ├── CSVLintBear.py │ └── __init__.py ├── dart │ ├── DartLintBear.py │ └── __init__.py ├── documentation │ ├── DocGrammarBear.py │ ├── DocumentationStyleBear.py │ └── __init__.py ├── elm │ ├── ElmLintBear.py │ └── __init__.py ├── general │ ├── AnnotationBear.py │ ├── CPDBear.py │ ├── DuplicateFileBear.py │ ├── FilenameBear.py │ ├── HTTPSBear.py │ ├── IndentationBear.py │ ├── InvalidLinkBear.py │ ├── KeywordBear.py │ ├── LicenseCheckBear.py │ ├── LicenseHeaderBear.py │ ├── LineContinuationBear.py │ ├── LineCountBear.py │ ├── LineLengthBear.py │ ├── MementoBear.py │ ├── QuotesBear.py │ ├── SpaceConsistencyBear.py │ ├── TextLintBear.py │ ├── URLBear.py │ ├── URLHeadBear.py │ ├── __init__.py │ └── coalaBear.py ├── gettext │ ├── DennisBear.py │ └── __init__.py ├── gherkin │ ├── GherkinLintBear.py │ └── __init__.py ├── go │ ├── GoErrCheckBear.py │ ├── GoImportsBear.py │ ├── GoLintBear.py │ ├── GoReturnsBear.py │ ├── GoTypeBear.py │ ├── GoVetBear.py │ ├── GofmtBear.py │ └── __init__.py ├── haml │ ├── HAMLLintBear.py │ └── __init__.py ├── haskell │ ├── GhcModBear.py │ ├── HaskellLintBear.py │ └── __init__.py ├── hypertext │ ├── BootLintBear.py │ ├── HTMLHintBear.py │ ├── HTMLLintBear.py │ ├── HTTPoliceLintBear.py │ └── __init__.py ├── java │ ├── CheckstyleBear.py │ ├── InferBear.py │ ├── JavaPMDBear.py │ └── __init__.py ├── jinja2 │ ├── Jinja2Bear.py │ └── __init__.py ├── js │ ├── ESLintBear.py │ ├── HappinessLintBear.py │ ├── JSComplexityBear.py │ ├── JSHintBear.py │ ├── JSONFormatBear.py │ ├── JSStandardBear.py │ ├── PrettierLintBear.py │ └── __init__.py ├── julia │ ├── JuliaLintBear.py │ └── __init__.py ├── latex │ ├── LatexLintBear.py │ └── __init__.py ├── lua │ ├── LuaLintBear.py │ └── __init__.py ├── markdown │ ├── MarkdownBear.py │ └── __init__.py ├── matlab │ ├── MatlabIndentationBear.py │ └── __init__.py ├── natural_language │ ├── AlexBear.py │ ├── LanguageToolBear.py │ ├── ProseLintBear.py │ ├── SpellCheckBear.py │ ├── WriteGoodLintBear.py │ └── __init__.py ├── perl │ ├── PerlCriticBear.py │ └── __init__.py ├── php │ ├── PHPCodeSnifferBear.py │ ├── PHPLintBear.py │ ├── PHPMessDetectorBear.py │ └── __init__.py ├── pug │ ├── PugLintBear.py │ └── __init__.py ├── python │ ├── BanditBear.py │ ├── MypyBear.py │ ├── PEP8Bear.py │ ├── PEP8NotebookBear.py │ ├── PyCommentedCodeBear.py │ ├── PyDocStyleBear.py │ ├── PyFlakesBear.py │ ├── PyImportSortBear.py │ ├── PyLintBear.py │ ├── PyStringConcatBear.py │ ├── PyUnusedCodeBear.py │ ├── PycodestyleBear.py │ ├── PyromaBear.py │ ├── PythonPackageInitBear.py │ ├── RadonBear.py │ ├── VultureBear.py │ ├── YapfBear.py │ ├── __init__.py │ └── requirements │ │ ├── PinRequirementsBear.py │ │ ├── PySafetyBear.py │ │ └── __init__.py ├── r │ ├── FormatRBear.py │ ├── RLintBear.py │ └── __init__.py ├── rest │ ├── RSTcheckBear.py │ ├── __init__.py │ └── reSTLintBear.py ├── ruby │ ├── RuboCopBear.py │ ├── RubyFastererBear.py │ ├── RubySecurityBear.py │ ├── RubySmellBear.py │ ├── RubySyntaxBear.py │ └── __init__.py ├── scala │ ├── ScalaLintBear.py │ ├── __init__.py │ └── scalastyle_config.xml ├── scss │ ├── SASSLintBear.py │ ├── SCSSLintBear.py │ └── __init__.py ├── shell │ ├── BashateBear.py │ ├── ShellCheckBear.py │ └── __init__.py ├── sql │ ├── SQLFormatBear.py │ ├── SQLintBear.py │ └── __init__.py ├── stylus │ ├── StylintBear.py │ └── __init__.py ├── swift │ ├── TailorBear.py │ └── __init__.py ├── typescript │ ├── TSLintBear.py │ └── __init__.py ├── vcs │ ├── CommitBear.py │ ├── VCSCommitMetadataBear.py │ ├── __init__.py │ ├── git │ │ ├── CISkipInspectBear.py │ │ ├── GitCommitBear.py │ │ ├── GitCommitMetadataBear.py │ │ ├── GitIgnoreBear.py │ │ ├── GitLinearCommitBear.py │ │ ├── GitRevertInspectBear.py │ │ └── __init__.py │ └── mercurial │ │ ├── HgCommitBear.py │ │ └── __init__.py ├── verilog │ ├── VerilogLintBear.py │ └── __init__.py ├── vhdl │ ├── VHDLLintBear.py │ └── __init__.py ├── vimscript │ ├── VintBear.py │ └── __init__.py ├── xml2 │ ├── XMLBear.py │ └── __init__.py └── yaml │ ├── RAMLLintBear.py │ ├── TravisLintBear.py │ ├── YAMLLintBear.py │ └── __init__.py ├── coala-bears.cabal ├── composer.json ├── docs-requirements.txt ├── docs ├── Makefile ├── conf.py └── index.rst ├── ignore.txt ├── netlify.toml ├── package.json ├── prof ├── combined.prof ├── requirements.txt.prof ├── test-requirements.txt.prof ├── test_cve_key_checker.prof ├── test_with_no_pinned_requirements.prof ├── test_with_no_requirements.prof ├── test_with_vulnerability.prof └── test_without_vulnerability.prof ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── apertium │ ├── ApertiumLintBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── apertium-ba-ad.en.dix │ │ ├── apertium-go-od.en.dix │ │ └── apertium_config.json ├── c_languages │ ├── ArtisticStyleBearTest.py │ ├── CPPCheckBearTest.py │ ├── CPPCleanBearTest.py │ ├── CPPLintBearTest.py │ ├── CSecurityBearTest.py │ ├── CSharpLintBearTest.py │ ├── ClangBearTest.py │ ├── ClangComplexityBearTest.py │ ├── GNUIndentBearTest.py │ ├── __init__.py │ ├── codeclone_detection │ │ ├── ClangASTPrintBearTest.py │ │ ├── ClangCloneDetectionBearTest.py │ │ ├── ClangCountVectorCreatorTest.py │ │ ├── ClangCountingConditionsTest.py │ │ ├── CloneDetectionRoutinesTest.py │ │ ├── CountVectorTest.py │ │ ├── __init__.py │ │ ├── clone_detection_samples │ │ │ ├── LICENSE │ │ │ ├── clones │ │ │ │ ├── bubblesort.c │ │ │ │ ├── faculty.c │ │ │ │ ├── kernel_scrolling.c │ │ │ │ ├── one_big_one_small.c │ │ │ │ ├── python_casing.c │ │ │ │ ├── python_casing2.c │ │ │ │ ├── s1a.c │ │ │ │ ├── s1b.c │ │ │ │ ├── s1c.c │ │ │ │ ├── s2a.c │ │ │ │ ├── s2b.c │ │ │ │ ├── s2c.c │ │ │ │ ├── s2d.c │ │ │ │ ├── s3a.c │ │ │ │ ├── s3b.c │ │ │ │ ├── s3c.c │ │ │ │ ├── s3d.c │ │ │ │ ├── s3e.c │ │ │ │ ├── s4a.c │ │ │ │ ├── s4b.c │ │ │ │ ├── s4c.c │ │ │ │ ├── s4d.c │ │ │ │ └── several_duplicates.c │ │ │ ├── kernel_print.h │ │ │ ├── non_clones │ │ │ │ ├── builder_editorconfig.c │ │ │ │ ├── kernel_utilities.c │ │ │ │ ├── pythonparser.c │ │ │ │ ├── sorting_algs.c │ │ │ │ ├── string_stuff.c │ │ │ │ └── test.c │ │ │ └── stdint.h │ │ ├── conditions_samples.c │ │ └── sample.c │ ├── cppcheck_test_files │ │ ├── bad_file.cpp │ │ ├── good_file.cpp │ │ └── warn_file.cpp │ └── test_files │ │ ├── csharplint_test1.cs │ │ ├── csharplint_test2.cs │ │ ├── empty_declarations.c │ │ ├── headers1 │ │ └── foo.h │ │ └── headers2 │ │ └── bar.h ├── cmake │ ├── CMakeLintBearTest.py │ ├── __init__.py │ └── test_files │ │ └── cmake_config.txt ├── coalaBearTest.py ├── coffee_script │ ├── CoffeeLintBearTest.py │ └── __init__.py ├── configfiles │ ├── DockerfileLintBearTest.py │ ├── PuppetLintBearTest.py │ ├── TOMLBearTest.py │ ├── __init__.py │ └── dockerfile_lint_test_files │ │ ├── default_rule.yaml │ │ └── sample_rule.yaml ├── conftest.py ├── css │ ├── CSSAutoPrefixBearTest.py │ ├── CSSCombBearTest.py │ ├── CSSLintBearTest.py │ ├── StyleLintBearTest.py │ ├── __init__.py │ ├── csscomb_test_files │ │ └── .csscomb.json │ └── test_files │ │ ├── stylelint_bad.css │ │ └── stylelint_good.css ├── csv │ ├── CSVLintBearTest.py │ └── __init__.py ├── dart │ ├── DartLintBearTest.py │ └── __init__.py ├── documentation │ ├── DocGrammarBearTest.py │ ├── DocumentationStyleBearTest.py │ ├── __init__.py │ └── test_files │ │ └── DocumentationStyleBear │ │ ├── bad_file.java.test │ │ ├── bad_file.java.test.correct │ │ ├── bad_file.py.test │ │ ├── bad_file.py.test.correct │ │ ├── bad_file2.py.test │ │ ├── bad_file2.py.test.correct │ │ ├── bad_file3.py.test │ │ ├── bad_file3.py.test.correct │ │ ├── bad_file4.py.test │ │ ├── bad_file4.py.test.correct │ │ ├── bad_file5.py.test │ │ ├── bad_file5.py.test.correct │ │ ├── good_file.py.test │ │ ├── good_file2.py.test │ │ └── good_file3.py.test ├── elm │ ├── ElmLintBearTest.py │ └── __init__.py ├── general │ ├── AnnotationBearTest.py │ ├── CPDBearTest.py │ ├── DuplicateFileBearTest.py │ ├── FilenameBearTest.py │ ├── HTTPSBearTest.py │ ├── IndentationBearTest.py │ ├── InvalidLinkBearTest.py │ ├── KeywordBearTest.py │ ├── LicenseCheckBearTest.py │ ├── LicenseHeaderBearTest.py │ ├── LineContinuationBearTest.py │ ├── LineCountBearTest.py │ ├── LineLengthBearTest.py │ ├── MementoBearTest.py │ ├── QuotesBearTest.py │ ├── SpaceConsistencyBearTest.py │ ├── TextLintBearTest.py │ ├── URLBearTest.py │ ├── URLHeadBearTest.py │ ├── __init__.py │ ├── coalaBearTest.py │ ├── code_duplication_samples │ │ ├── bad_code.java │ │ └── good_code.java │ ├── duplicate_test_files │ │ ├── complexFirst.txt │ │ ├── complexSecond.txt │ │ ├── noMatch.txt │ │ ├── smallFirst.txt │ │ └── smallSecond.txt │ ├── licensecheck_test_files │ │ ├── __init__.py │ │ ├── apache_license_without_copyright.py │ │ ├── copyright_without_license.py │ │ ├── mit_license.py │ │ └── no_license.py │ ├── licenseheader_test_files │ │ ├── CopyrightWithoutAuthor.java │ │ ├── __init__.py │ │ ├── copyright_with_different_author.txt │ │ ├── copyright_with_given_author.txt │ │ └── no_copyright.py │ ├── mementobear_test_files │ │ ├── google_memento_redirect_response.json │ │ └── google_memento_timemap_response.json │ └── textlint_test_files │ │ ├── .textlintrc │ │ ├── __init__.py │ │ ├── bad_alex_no_dead_link.md │ │ ├── bad_date_weekday_mismatch.txt │ │ ├── bad_ginger.rst │ │ ├── bad_max_comma.re │ │ ├── bad_ng_word_unexpanded_acronym.md │ │ ├── bad_ng_words_acronym_list_item.md │ │ ├── bad_no_empty_section.md │ │ ├── bad_no_start_duplicated_conjunction.txt │ │ ├── bad_write_good_common_misspellings.html │ │ └── good_file.md ├── generate_packageTest.py ├── generate_package_input_files │ └── template_file.py.in ├── gettext │ ├── DennisBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── __init__.py │ │ ├── dennis_invalid_test.po │ │ └── dennis_valid_test.po ├── gherkin │ ├── GherkinLintBearTest.py │ ├── __init__.py │ ├── config_files │ │ └── .gherkin-lintrc │ ├── test_files │ │ ├── .gherkin-lintrc │ │ ├── DuplicateFeatureName-Pt1.feature │ │ └── DuplicateFeatureName-Pt2.feature │ ├── test_files1 │ │ ├── DuplicateFeatureName-Pt1.feature │ │ ├── DuplicateFeatureName-Pt2.feature │ │ ├── DuplicateScenarioName.feature │ │ ├── DuplicateTags.feature │ │ ├── EmptyFeature.feature │ │ ├── MultipleEmptyLines.feature │ │ ├── NoHomogenousTags.feature │ │ ├── NoNewLineAtEOF.feature │ │ ├── NoRestrictedTags.feature │ │ ├── NoScenarios.feature │ │ ├── NoSuperfluousTags.feature │ │ ├── OnlyScenarioOutlines.feature │ │ ├── PartiallyCommentedTagLine.feature │ │ ├── ScenarioOutlineWithoutExamples.feature │ │ ├── TrailingSpaces.feature │ │ ├── TrailingTab.feature │ │ ├── UnnamedFeature.feature │ │ ├── UnnamedScenario.feature │ │ └── UseAnd.feature │ └── test_files2 │ │ ├── MultipleBackgrounds.feature │ │ ├── MultipleFeatures.feature │ │ └── TagOnBackground.feature ├── go │ ├── GoErrCheckBearTest.py │ ├── GoImportsBearTest.py │ ├── GoLintBearTest.py │ ├── GoReturnsBearTest.py │ ├── GoTypeBearTest.py │ ├── GoVetBearTest.py │ ├── GofmtBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── vet_bad_semantics.go │ │ ├── vet_bad_syntax.go │ │ └── vet_good.go ├── haml │ ├── HAMLLintBearTest.py │ ├── __init__.py │ └── hamllint_test_files │ │ ├── .haml-lint.yml │ │ ├── test_alignment_tabs_good_file.haml │ │ ├── test_alt_text_bad_file.haml │ │ ├── test_alt_text_good_file.haml │ │ ├── test_consecutive_comments_bad_file.haml │ │ ├── test_consecutive_comments_good_file.haml │ │ ├── test_consecutive_comments_good_file_via_config.haml │ │ ├── test_consecutive_silent_scripts_bad_file.haml │ │ ├── test_consecutive_silent_scripts_good_file.haml │ │ ├── test_no_trailing_whitespace_file.haml │ │ └── test_trailing_whitespace_file.haml ├── haskell │ ├── GhcModBearTest.py │ ├── HaskellLintBearTest.py │ └── __init__.py ├── hypertext │ ├── BootLintBearTest.py │ ├── HTMLHintBearTest.py │ ├── HTMLLintBearTest.py │ ├── HTTPoliceLintBearTest.py │ ├── __init__.py │ ├── htmlhint_test_files │ │ ├── .htmlhintrc │ │ ├── test_attribute_duplication.html │ │ ├── test_bad_inline_style.html │ │ ├── test_bad_lowercase_attribute.html │ │ ├── test_bad_lowercase_tagname.html │ │ ├── test_bad_tag_pair.html │ │ ├── test_bad_unique_attribute_id.html │ │ ├── test_doctype_at_beginning.html │ │ ├── test_links_in_href.html │ │ └── test_require_alt_attribute.html │ └── httpolice_test_files │ │ ├── test_bad_header.har │ │ ├── test_syntax_error_in_request_target.har │ │ └── test_valid_file.har ├── java │ ├── CheckstyleBearTest.py │ ├── InferBearTest.py │ ├── JavaPMDBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── CheckstyleBad.java │ │ ├── CheckstyleGood.java │ │ └── checkstyle_empty_config.xml ├── jinja2 │ ├── Jinja2BearTest.py │ └── __init__.py ├── js │ ├── ESLintBearTest.py │ ├── HappinessLintBearTest.py │ ├── JSComplexityBearTest.py │ ├── JSHintBearTest.py │ ├── JSONFormatBearTest.py │ ├── JSStandardBearTest.py │ ├── PrettierLintBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── eslintconfig.json │ │ ├── eslintconfig_badplugin.json │ │ ├── eslintconfig_import.json │ │ ├── jshintconfig.json │ │ └── test.js ├── julia │ ├── JuliaLintBearTest.py │ └── __init__.py ├── latex │ ├── LatexLintBearTest.py │ └── __init__.py ├── lua │ ├── LuaLintBearTest.py │ └── __init__.py ├── markdown │ ├── MarkdownBearTest.py │ └── __init__.py ├── matlab │ ├── MatlabIndentationBearTest.py │ └── __init__.py ├── natural_language │ ├── AlexBearTest.py │ ├── LanguageToolBearTest.py │ ├── ProseLintBearTest.py │ ├── SpellCheckBearTest.py │ ├── WriteGoodLintBearTest.py │ └── __init__.py ├── perl │ ├── PerlCriticBearTest.py │ ├── __init__.py │ └── testfiles │ │ └── .perlcriticrc ├── php │ ├── PHPCodeSnifferBearTest.py │ ├── PHPLintBearTest.py │ ├── PHPMessDetectorBearTest.py │ ├── __init__.py │ ├── phpmessdetector_test_files │ │ ├── __init__.py │ │ ├── cleancode_violation.php │ │ ├── codesize_violation.php │ │ ├── design_violation.php │ │ ├── naming_violation.php │ │ └── unusedcode_violation.php │ └── test_files │ │ ├── phplint_test1.php │ │ └── phplint_test2.php ├── pug │ ├── PugLintBearTest.py │ ├── __init__.py │ └── puglint_test_files │ │ ├── .pug-lintrc │ │ ├── block_expansion.pug │ │ ├── class_and_id_literals.pug │ │ ├── class_attribute_with_static_value.pug │ │ ├── html_text.pug │ │ ├── legacy_mixin_call.pug │ │ ├── multiple_line_breaks.pug │ │ ├── preferred_quotation.pug │ │ ├── spaces_inside_attribute_brackets.pug │ │ └── test_file.pug ├── python │ ├── BanditBearTest.py │ ├── MypyBearTest.py │ ├── PEP8BearTest.py │ ├── PEP8NotebookBearTest.py │ ├── PyCommentedCodeBearTest.py │ ├── PyDocStyleBearTest.py │ ├── PyFlakesBearTest.py │ ├── PyImportSortBearTest.py │ ├── PyLintBearTest.py │ ├── PyStringConcatBearTest.py │ ├── PyUnusedCodeBearTest.py │ ├── PycodestyleBearTest.py │ ├── PyromaBearTest.py │ ├── PythonPackageInitBearTest.py │ ├── RadonBearTest.py │ ├── VultureBearTest.py │ ├── YapfBearTest.py │ ├── __init__.py │ ├── bandit_test_files │ │ ├── __init__.py │ │ ├── assert.py │ │ ├── exec-py2.py │ │ ├── good_file.py │ │ ├── httpoxy_cgihandler.py │ │ ├── jinja2_templating.py │ │ └── skip.py │ ├── pyroma_test_files │ │ ├── complete │ │ │ ├── __init__.py │ │ │ ├── complete │ │ │ │ ├── __init__.py │ │ │ │ └── tests.py │ │ │ ├── setup.cfg │ │ │ └── setup.py │ │ ├── minimal │ │ │ ├── __init__.py │ │ │ ├── minimal │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ └── no_setup │ │ │ ├── __init__.py │ │ │ └── no_setup │ │ │ └── __init__.py │ ├── requirements │ │ ├── PinRequirementsBearTest.py │ │ ├── PySafetyBearTest.py │ │ ├── PySafetyBearWithoutMockTest.py │ │ ├── PySafety_test_files │ │ │ └── requirement.txt │ │ └── __init__.py │ ├── test_files │ │ ├── __init__.py │ │ ├── pylint_config │ │ └── pylint_test.py │ └── vulture_test_files │ │ ├── __init__.py │ │ ├── unreachable_else.py │ │ ├── unsatisfiable_if.py │ │ ├── unsatisfiable_while.py │ │ ├── unused_arg.py │ │ ├── unused_class.py │ │ ├── unused_function.py │ │ ├── unused_import.py │ │ ├── unused_property.py │ │ ├── unused_variable.py │ │ └── used_variable.py ├── r │ ├── FormatRBearTest.py │ ├── RLintBearTest.py │ └── __init__.py ├── rest │ ├── RSTcheckBearTest.py │ ├── __init__.py │ └── reSTLintBearTest.py ├── ruby │ ├── RuboCopBearTest.py │ ├── RubyFastererBearTest.py │ ├── RubySecurityBearTest.py │ ├── RubySmellBearTest.py │ ├── RubySyntaxBearTest.py │ ├── __init__.py │ ├── brakeman_test_files │ │ └── app │ │ │ └── models │ │ │ ├── account.rb │ │ │ └── user.rb │ ├── fasterer_test_files │ │ ├── module_eval.rb │ │ └── sort_vs_sort_by.rb │ └── test_files │ │ ├── bad_file.rb │ │ ├── good_file.rb │ │ ├── indent_file.rb │ │ └── rubocop_config.yaml ├── scala │ ├── ScalaLintBearTest.py │ ├── __init__.py │ └── test_files │ │ └── scala_config.xml ├── scss │ ├── SASSLintBearTest.py │ ├── SCSSLintBearTest.py │ ├── __init__.py │ └── test_files │ │ └── sass-lint.yml ├── shell │ ├── BashateBearTest.py │ ├── ShellCheckBearTest.py │ └── __init__.py ├── sql │ ├── SQLFormatBearTest.py │ ├── SQLintBearTest.py │ └── __init__.py ├── stylus │ ├── StylintBearTest.py │ ├── __init__.py │ └── stylint_test_files │ │ ├── .stylintrc │ │ ├── test_bad_alphabetical_order.styl │ │ ├── test_bad_brackets.styl │ │ ├── test_bad_duplicates.styl │ │ ├── test_bad_missing_colon.styl │ │ ├── test_bad_mixed_spaces_tabs.styl │ │ ├── test_bad_no_important.styl │ │ ├── test_bad_placeholder_space_color.styl │ │ ├── test_bad_semicolon.styl │ │ ├── test_bad_trailing_whitespace.styl │ │ └── test_valid_file.styl ├── swift │ ├── TailorBearTest.py │ ├── __init__.py │ └── test_files │ │ └── tailor.yaml ├── typescript │ ├── TSLintBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── tslint-single.json │ │ └── tslint.json ├── vcs │ ├── CommitBearTest.py │ ├── VCSCommitMetadataBearTest.py │ ├── __init__.py │ ├── git │ │ ├── CISkipInspectBearTest.py │ │ ├── GitCommitBearTest.py │ │ ├── GitCommitMetadataBearTest.py │ │ ├── GitIgnoreBearTest.py │ │ ├── GitLinearCommitBearTest.py │ │ ├── GitRevertInspectBearTest.py │ │ └── __init__.py │ └── mercurial │ │ ├── HgCommitBearTest.py │ │ └── __init__.py ├── verilog │ ├── VerilogLintBearTest.py │ └── __init__.py ├── vhdl │ ├── VHDLLintBearTest.py │ └── __init__.py ├── vimscript │ ├── VintBearTest.py │ └── __init__.py ├── xml2 │ ├── XMLBearTest.py │ ├── __init__.py │ └── test_files │ │ ├── concept-invalid.xml │ │ ├── concept-valid.xml │ │ ├── dtd-error.xml │ │ ├── note.dtd │ │ ├── note.rng │ │ ├── note.xml │ │ ├── note.xsd │ │ ├── rng-error.xml │ │ └── xsd-error.xml └── yaml │ ├── RAMLLintBearTest.py │ ├── TravisLintBearTest.py │ ├── YAMLLintBearTest.py │ ├── __init__.py │ └── travislint_test_files │ ├── .bad_travis.yml │ ├── .empty_travis.yml │ └── .good_travis.yml └── tox.ini /.ci/Export-NUnitXml.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/Export-NUnitXml.psm1 -------------------------------------------------------------------------------- /.ci/Fudge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/Fudge.ps1 -------------------------------------------------------------------------------- /.ci/FudgeCI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/FudgeCI.ps1 -------------------------------------------------------------------------------- /.ci/FudgeGenerateFake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/FudgeGenerateFake.ps1 -------------------------------------------------------------------------------- /.ci/FudgePostInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/FudgePostInstall.ps1 -------------------------------------------------------------------------------- /.ci/Modules/FudgeTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/Modules/FudgeTools.psm1 -------------------------------------------------------------------------------- /.ci/PSLint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/PSLint.ps1 -------------------------------------------------------------------------------- /.ci/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /.ci/PrepareAVVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/PrepareAVVM.ps1 -------------------------------------------------------------------------------- /.ci/adjust_version_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/adjust_version_number.py -------------------------------------------------------------------------------- /.ci/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/appveyor.yml -------------------------------------------------------------------------------- /.ci/check_moban.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/check_moban.sh -------------------------------------------------------------------------------- /.ci/check_setuptools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/check_setuptools.py -------------------------------------------------------------------------------- /.ci/check_unsupported.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/check_unsupported.sh -------------------------------------------------------------------------------- /.ci/choco.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/choco.config -------------------------------------------------------------------------------- /.ci/constants.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/constants.ps1 -------------------------------------------------------------------------------- /.ci/deploy.pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deploy.pypi.sh -------------------------------------------------------------------------------- /.ci/deps.ActivePerl-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ActivePerl-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.ActivePerl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ActivePerl.ps1 -------------------------------------------------------------------------------- /.ci/deps.alex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.alex.sh -------------------------------------------------------------------------------- /.ci/deps.apt_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.apt_get.sh -------------------------------------------------------------------------------- /.ci/deps.bakalint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.bakalint.sh -------------------------------------------------------------------------------- /.ci/deps.cabal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.cabal.sh -------------------------------------------------------------------------------- /.ci/deps.coala-bears.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.coala-bears.sh -------------------------------------------------------------------------------- /.ci/deps.composer-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.composer-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.composer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e -x 4 | 5 | composer install 6 | -------------------------------------------------------------------------------- /.ci/deps.elm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.elm.sh -------------------------------------------------------------------------------- /.ci/deps.flawfinder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.flawfinder.sh -------------------------------------------------------------------------------- /.ci/deps.generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.generic.sh -------------------------------------------------------------------------------- /.ci/deps.ghc-mod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ghc-mod.sh -------------------------------------------------------------------------------- /.ci/deps.ghc-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ghc-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.go.sh -------------------------------------------------------------------------------- /.ci/deps.golang-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.golang-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.golang.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.golang.ps1 -------------------------------------------------------------------------------- /.ci/deps.infer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.infer.sh -------------------------------------------------------------------------------- /.ci/deps.java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.java.sh -------------------------------------------------------------------------------- /.ci/deps.julia.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.julia.jl -------------------------------------------------------------------------------- /.ci/deps.julia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.julia.sh -------------------------------------------------------------------------------- /.ci/deps.lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.lua.sh -------------------------------------------------------------------------------- /.ci/deps.minimal.sh: -------------------------------------------------------------------------------- 1 | deps.generic.sh -------------------------------------------------------------------------------- /.ci/deps.node_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.node_js.sh -------------------------------------------------------------------------------- /.ci/deps.nodejs-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.nodejs-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.objective_c.sh: -------------------------------------------------------------------------------- 1 | deps.tailor.sh -------------------------------------------------------------------------------- /.ci/deps.opam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.opam.sh -------------------------------------------------------------------------------- /.ci/deps.perl.sh: -------------------------------------------------------------------------------- 1 | deps.bakalint.sh -------------------------------------------------------------------------------- /.ci/deps.php.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.php.ps1 -------------------------------------------------------------------------------- /.ci/deps.php.sh: -------------------------------------------------------------------------------- 1 | deps.composer.sh -------------------------------------------------------------------------------- /.ci/deps.pmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.pmd.sh -------------------------------------------------------------------------------- /.ci/deps.pyenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.pyenv.sh -------------------------------------------------------------------------------- /.ci/deps.python-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.python-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.python.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.python.ps1 -------------------------------------------------------------------------------- /.ci/deps.python27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.python27.sh -------------------------------------------------------------------------------- /.ci/deps.python36.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.python36.sh -------------------------------------------------------------------------------- /.ci/deps.ruby-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ruby-packages.ps1 -------------------------------------------------------------------------------- /.ci/deps.ruby.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ruby.ps1 -------------------------------------------------------------------------------- /.ci/deps.ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.ruby.sh -------------------------------------------------------------------------------- /.ci/deps.tailor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/deps.tailor.sh -------------------------------------------------------------------------------- /.ci/generate_bear_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/generate_bear_metadata.py -------------------------------------------------------------------------------- /.ci/generate_coverage_thresholds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/generate_coverage_thresholds.py -------------------------------------------------------------------------------- /.ci/generate_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/generate_package.py -------------------------------------------------------------------------------- /.ci/get_bears.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/get_bears.py -------------------------------------------------------------------------------- /.ci/get_codecov_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/get_codecov_tags.py -------------------------------------------------------------------------------- /.ci/get_cov_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/get_cov_args.py -------------------------------------------------------------------------------- /.ci/get_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/get_tests.py -------------------------------------------------------------------------------- /.ci/refreshenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/refreshenv.sh -------------------------------------------------------------------------------- /.ci/store_env_in_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/store_env_in_registry.py -------------------------------------------------------------------------------- /.ci/travis_extra_globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/travis_extra_globals.sh -------------------------------------------------------------------------------- /.ci/travis_init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.ci/travis_init.ps1 -------------------------------------------------------------------------------- /.coafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.coafile -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.java text eol=native 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.gitignore -------------------------------------------------------------------------------- /.moban.dt/DESCRIPTION.jj2: -------------------------------------------------------------------------------- 1 | Package: coala 2 | Version: 0.10 3 | Depends: R (>= 3.1.0), lintr, formatR 4 | -------------------------------------------------------------------------------- /.moban.dt/Gemfile.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/Gemfile.jj2 -------------------------------------------------------------------------------- /.moban.dt/bear-requirements.txt.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/bear-requirements.txt.jj2 -------------------------------------------------------------------------------- /.moban.dt/bears-appveyor.yml.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/bears-appveyor.yml.jj2 -------------------------------------------------------------------------------- /.moban.dt/bears-setup.cfg.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/bears-setup.cfg.jj2 -------------------------------------------------------------------------------- /.moban.dt/bears-setup.py.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/bears-setup.py.jj2 -------------------------------------------------------------------------------- /.moban.dt/bears-test-requirements.txt.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/bears-test-requirements.txt.jj2 -------------------------------------------------------------------------------- /.moban.dt/bears-travis.yml.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/bears-travis.yml.jj2 -------------------------------------------------------------------------------- /.moban.dt/coala-bears.cabal.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/coala-bears.cabal.jj2 -------------------------------------------------------------------------------- /.moban.dt/package.json.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/package.json.jj2 -------------------------------------------------------------------------------- /.moban.dt/requirements.txt.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/requirements.txt.jj2 -------------------------------------------------------------------------------- /.moban.dt/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/setup.py.in -------------------------------------------------------------------------------- /.moban.dt/travis-before-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/travis-before-install.yaml -------------------------------------------------------------------------------- /.moban.dt/travis-manual-matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.dt/travis-manual-matrix.yaml -------------------------------------------------------------------------------- /.moban.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.moban.yaml -------------------------------------------------------------------------------- /.nocover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.nocover.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: coala 2 | Version: 0.10 3 | Depends: R (>= 3.1.0), lintr, formatR 4 | -------------------------------------------------------------------------------- /Fudgefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/Fudgefile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/Makefile.PL -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASE_NOTES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/RELEASE_NOTES.rst -------------------------------------------------------------------------------- /bear-languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bear-languages.yaml -------------------------------------------------------------------------------- /bear-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bear-metadata.yaml -------------------------------------------------------------------------------- /bear-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bear-requirements.txt -------------------------------------------------------------------------------- /bear-requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bear-requirements.yaml -------------------------------------------------------------------------------- /bears/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/Constants.py -------------------------------------------------------------------------------- /bears/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/VERSION -------------------------------------------------------------------------------- /bears/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/__init__.py -------------------------------------------------------------------------------- /bears/apertium/ApertiumLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/apertium/ApertiumLintBear.py -------------------------------------------------------------------------------- /bears/apertium/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/c_languages/ArtisticStyleBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/ArtisticStyleBear.py -------------------------------------------------------------------------------- /bears/c_languages/CPPCheckBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/CPPCheckBear.py -------------------------------------------------------------------------------- /bears/c_languages/CPPCleanBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/CPPCleanBear.py -------------------------------------------------------------------------------- /bears/c_languages/CPPLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/CPPLintBear.py -------------------------------------------------------------------------------- /bears/c_languages/CSecurityBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/CSecurityBear.py -------------------------------------------------------------------------------- /bears/c_languages/CSharpLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/CSharpLintBear.py -------------------------------------------------------------------------------- /bears/c_languages/ClangBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/ClangBear.py -------------------------------------------------------------------------------- /bears/c_languages/ClangComplexityBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/ClangComplexityBear.py -------------------------------------------------------------------------------- /bears/c_languages/GNUIndentBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/GNUIndentBear.py -------------------------------------------------------------------------------- /bears/c_languages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/ClangASTPrintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/ClangASTPrintBear.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/ClangCloneDetectionBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/ClangCloneDetectionBear.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/ClangCountVectorCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/ClangCountVectorCreator.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/ClangCountingConditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/ClangCountingConditions.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/ClangFunctionDifferenceBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/ClangFunctionDifferenceBear.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/CloneDetectionRoutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/CloneDetectionRoutines.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/CountVector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/CountVector.py -------------------------------------------------------------------------------- /bears/c_languages/codeclone_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/c_languages/codeclone_detection/__init__.py -------------------------------------------------------------------------------- /bears/cmake/CMakeLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/cmake/CMakeLintBear.py -------------------------------------------------------------------------------- /bears/cmake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/coffee_script/CoffeeLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/coffee_script/CoffeeLintBear.py -------------------------------------------------------------------------------- /bears/coffee_script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/configfiles/DockerfileLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/configfiles/DockerfileLintBear.py -------------------------------------------------------------------------------- /bears/configfiles/PuppetLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/configfiles/PuppetLintBear.py -------------------------------------------------------------------------------- /bears/configfiles/TOMLBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/configfiles/TOMLBear.py -------------------------------------------------------------------------------- /bears/configfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/css/CSSAutoPrefixBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/css/CSSAutoPrefixBear.py -------------------------------------------------------------------------------- /bears/css/CSSCombBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/css/CSSCombBear.py -------------------------------------------------------------------------------- /bears/css/CSSLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/css/CSSLintBear.py -------------------------------------------------------------------------------- /bears/css/StyleLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/css/StyleLintBear.py -------------------------------------------------------------------------------- /bears/css/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/csv/CSVLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/csv/CSVLintBear.py -------------------------------------------------------------------------------- /bears/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/dart/DartLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/dart/DartLintBear.py -------------------------------------------------------------------------------- /bears/dart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/documentation/DocGrammarBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/documentation/DocGrammarBear.py -------------------------------------------------------------------------------- /bears/documentation/DocumentationStyleBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/documentation/DocumentationStyleBear.py -------------------------------------------------------------------------------- /bears/documentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/elm/ElmLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/elm/ElmLintBear.py -------------------------------------------------------------------------------- /bears/elm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/general/AnnotationBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/AnnotationBear.py -------------------------------------------------------------------------------- /bears/general/CPDBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/CPDBear.py -------------------------------------------------------------------------------- /bears/general/DuplicateFileBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/DuplicateFileBear.py -------------------------------------------------------------------------------- /bears/general/FilenameBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/FilenameBear.py -------------------------------------------------------------------------------- /bears/general/HTTPSBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/HTTPSBear.py -------------------------------------------------------------------------------- /bears/general/IndentationBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/IndentationBear.py -------------------------------------------------------------------------------- /bears/general/InvalidLinkBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/InvalidLinkBear.py -------------------------------------------------------------------------------- /bears/general/KeywordBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/KeywordBear.py -------------------------------------------------------------------------------- /bears/general/LicenseCheckBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/LicenseCheckBear.py -------------------------------------------------------------------------------- /bears/general/LicenseHeaderBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/LicenseHeaderBear.py -------------------------------------------------------------------------------- /bears/general/LineContinuationBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/LineContinuationBear.py -------------------------------------------------------------------------------- /bears/general/LineCountBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/LineCountBear.py -------------------------------------------------------------------------------- /bears/general/LineLengthBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/LineLengthBear.py -------------------------------------------------------------------------------- /bears/general/MementoBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/MementoBear.py -------------------------------------------------------------------------------- /bears/general/QuotesBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/QuotesBear.py -------------------------------------------------------------------------------- /bears/general/SpaceConsistencyBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/SpaceConsistencyBear.py -------------------------------------------------------------------------------- /bears/general/TextLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/TextLintBear.py -------------------------------------------------------------------------------- /bears/general/URLBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/URLBear.py -------------------------------------------------------------------------------- /bears/general/URLHeadBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/URLHeadBear.py -------------------------------------------------------------------------------- /bears/general/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Contains miscellaneous bears. 3 | """ 4 | -------------------------------------------------------------------------------- /bears/general/coalaBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/general/coalaBear.py -------------------------------------------------------------------------------- /bears/gettext/DennisBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/gettext/DennisBear.py -------------------------------------------------------------------------------- /bears/gettext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/gherkin/GherkinLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/gherkin/GherkinLintBear.py -------------------------------------------------------------------------------- /bears/gherkin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/go/GoErrCheckBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GoErrCheckBear.py -------------------------------------------------------------------------------- /bears/go/GoImportsBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GoImportsBear.py -------------------------------------------------------------------------------- /bears/go/GoLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GoLintBear.py -------------------------------------------------------------------------------- /bears/go/GoReturnsBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GoReturnsBear.py -------------------------------------------------------------------------------- /bears/go/GoTypeBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GoTypeBear.py -------------------------------------------------------------------------------- /bears/go/GoVetBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GoVetBear.py -------------------------------------------------------------------------------- /bears/go/GofmtBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/go/GofmtBear.py -------------------------------------------------------------------------------- /bears/go/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Go related bears. 3 | """ 4 | -------------------------------------------------------------------------------- /bears/haml/HAMLLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/haml/HAMLLintBear.py -------------------------------------------------------------------------------- /bears/haml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/haskell/GhcModBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/haskell/GhcModBear.py -------------------------------------------------------------------------------- /bears/haskell/HaskellLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/haskell/HaskellLintBear.py -------------------------------------------------------------------------------- /bears/haskell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/hypertext/BootLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/hypertext/BootLintBear.py -------------------------------------------------------------------------------- /bears/hypertext/HTMLHintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/hypertext/HTMLHintBear.py -------------------------------------------------------------------------------- /bears/hypertext/HTMLLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/hypertext/HTMLLintBear.py -------------------------------------------------------------------------------- /bears/hypertext/HTTPoliceLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/hypertext/HTTPoliceLintBear.py -------------------------------------------------------------------------------- /bears/hypertext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/java/CheckstyleBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/java/CheckstyleBear.py -------------------------------------------------------------------------------- /bears/java/InferBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/java/InferBear.py -------------------------------------------------------------------------------- /bears/java/JavaPMDBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/java/JavaPMDBear.py -------------------------------------------------------------------------------- /bears/java/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Contains Java related bears. 3 | """ 4 | -------------------------------------------------------------------------------- /bears/jinja2/Jinja2Bear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/jinja2/Jinja2Bear.py -------------------------------------------------------------------------------- /bears/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/js/ESLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/ESLintBear.py -------------------------------------------------------------------------------- /bears/js/HappinessLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/HappinessLintBear.py -------------------------------------------------------------------------------- /bears/js/JSComplexityBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/JSComplexityBear.py -------------------------------------------------------------------------------- /bears/js/JSHintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/JSHintBear.py -------------------------------------------------------------------------------- /bears/js/JSONFormatBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/JSONFormatBear.py -------------------------------------------------------------------------------- /bears/js/JSStandardBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/JSStandardBear.py -------------------------------------------------------------------------------- /bears/js/PrettierLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/js/PrettierLintBear.py -------------------------------------------------------------------------------- /bears/js/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/julia/JuliaLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/julia/JuliaLintBear.py -------------------------------------------------------------------------------- /bears/julia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/latex/LatexLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/latex/LatexLintBear.py -------------------------------------------------------------------------------- /bears/latex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/lua/LuaLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/lua/LuaLintBear.py -------------------------------------------------------------------------------- /bears/lua/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/markdown/MarkdownBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/markdown/MarkdownBear.py -------------------------------------------------------------------------------- /bears/markdown/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/matlab/MatlabIndentationBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/matlab/MatlabIndentationBear.py -------------------------------------------------------------------------------- /bears/matlab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/natural_language/AlexBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/natural_language/AlexBear.py -------------------------------------------------------------------------------- /bears/natural_language/LanguageToolBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/natural_language/LanguageToolBear.py -------------------------------------------------------------------------------- /bears/natural_language/ProseLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/natural_language/ProseLintBear.py -------------------------------------------------------------------------------- /bears/natural_language/SpellCheckBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/natural_language/SpellCheckBear.py -------------------------------------------------------------------------------- /bears/natural_language/WriteGoodLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/natural_language/WriteGoodLintBear.py -------------------------------------------------------------------------------- /bears/natural_language/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/perl/PerlCriticBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/perl/PerlCriticBear.py -------------------------------------------------------------------------------- /bears/perl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/php/PHPCodeSnifferBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/php/PHPCodeSnifferBear.py -------------------------------------------------------------------------------- /bears/php/PHPLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/php/PHPLintBear.py -------------------------------------------------------------------------------- /bears/php/PHPMessDetectorBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/php/PHPMessDetectorBear.py -------------------------------------------------------------------------------- /bears/php/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/pug/PugLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/pug/PugLintBear.py -------------------------------------------------------------------------------- /bears/pug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/python/BanditBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/BanditBear.py -------------------------------------------------------------------------------- /bears/python/MypyBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/MypyBear.py -------------------------------------------------------------------------------- /bears/python/PEP8Bear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PEP8Bear.py -------------------------------------------------------------------------------- /bears/python/PEP8NotebookBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PEP8NotebookBear.py -------------------------------------------------------------------------------- /bears/python/PyCommentedCodeBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyCommentedCodeBear.py -------------------------------------------------------------------------------- /bears/python/PyDocStyleBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyDocStyleBear.py -------------------------------------------------------------------------------- /bears/python/PyFlakesBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyFlakesBear.py -------------------------------------------------------------------------------- /bears/python/PyImportSortBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyImportSortBear.py -------------------------------------------------------------------------------- /bears/python/PyLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyLintBear.py -------------------------------------------------------------------------------- /bears/python/PyStringConcatBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyStringConcatBear.py -------------------------------------------------------------------------------- /bears/python/PyUnusedCodeBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyUnusedCodeBear.py -------------------------------------------------------------------------------- /bears/python/PycodestyleBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PycodestyleBear.py -------------------------------------------------------------------------------- /bears/python/PyromaBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PyromaBear.py -------------------------------------------------------------------------------- /bears/python/PythonPackageInitBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/PythonPackageInitBear.py -------------------------------------------------------------------------------- /bears/python/RadonBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/RadonBear.py -------------------------------------------------------------------------------- /bears/python/VultureBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/VultureBear.py -------------------------------------------------------------------------------- /bears/python/YapfBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/YapfBear.py -------------------------------------------------------------------------------- /bears/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/python/requirements/PinRequirementsBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/requirements/PinRequirementsBear.py -------------------------------------------------------------------------------- /bears/python/requirements/PySafetyBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/python/requirements/PySafetyBear.py -------------------------------------------------------------------------------- /bears/python/requirements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/r/FormatRBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/r/FormatRBear.py -------------------------------------------------------------------------------- /bears/r/RLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/r/RLintBear.py -------------------------------------------------------------------------------- /bears/r/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/rest/RSTcheckBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/rest/RSTcheckBear.py -------------------------------------------------------------------------------- /bears/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/rest/reSTLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/rest/reSTLintBear.py -------------------------------------------------------------------------------- /bears/ruby/RuboCopBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/ruby/RuboCopBear.py -------------------------------------------------------------------------------- /bears/ruby/RubyFastererBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/ruby/RubyFastererBear.py -------------------------------------------------------------------------------- /bears/ruby/RubySecurityBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/ruby/RubySecurityBear.py -------------------------------------------------------------------------------- /bears/ruby/RubySmellBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/ruby/RubySmellBear.py -------------------------------------------------------------------------------- /bears/ruby/RubySyntaxBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/ruby/RubySyntaxBear.py -------------------------------------------------------------------------------- /bears/ruby/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/scala/ScalaLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/scala/ScalaLintBear.py -------------------------------------------------------------------------------- /bears/scala/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/scala/scalastyle_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/scala/scalastyle_config.xml -------------------------------------------------------------------------------- /bears/scss/SASSLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/scss/SASSLintBear.py -------------------------------------------------------------------------------- /bears/scss/SCSSLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/scss/SCSSLintBear.py -------------------------------------------------------------------------------- /bears/scss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/shell/BashateBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/shell/BashateBear.py -------------------------------------------------------------------------------- /bears/shell/ShellCheckBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/shell/ShellCheckBear.py -------------------------------------------------------------------------------- /bears/shell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/sql/SQLFormatBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/sql/SQLFormatBear.py -------------------------------------------------------------------------------- /bears/sql/SQLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/sql/SQLintBear.py -------------------------------------------------------------------------------- /bears/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/stylus/StylintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/stylus/StylintBear.py -------------------------------------------------------------------------------- /bears/stylus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/swift/TailorBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/swift/TailorBear.py -------------------------------------------------------------------------------- /bears/swift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/typescript/TSLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/typescript/TSLintBear.py -------------------------------------------------------------------------------- /bears/typescript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/vcs/CommitBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/CommitBear.py -------------------------------------------------------------------------------- /bears/vcs/VCSCommitMetadataBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/VCSCommitMetadataBear.py -------------------------------------------------------------------------------- /bears/vcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/vcs/git/CISkipInspectBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/git/CISkipInspectBear.py -------------------------------------------------------------------------------- /bears/vcs/git/GitCommitBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/git/GitCommitBear.py -------------------------------------------------------------------------------- /bears/vcs/git/GitCommitMetadataBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/git/GitCommitMetadataBear.py -------------------------------------------------------------------------------- /bears/vcs/git/GitIgnoreBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/git/GitIgnoreBear.py -------------------------------------------------------------------------------- /bears/vcs/git/GitLinearCommitBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/git/GitLinearCommitBear.py -------------------------------------------------------------------------------- /bears/vcs/git/GitRevertInspectBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/git/GitRevertInspectBear.py -------------------------------------------------------------------------------- /bears/vcs/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/vcs/mercurial/HgCommitBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vcs/mercurial/HgCommitBear.py -------------------------------------------------------------------------------- /bears/vcs/mercurial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/verilog/VerilogLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/verilog/VerilogLintBear.py -------------------------------------------------------------------------------- /bears/verilog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/vhdl/VHDLLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vhdl/VHDLLintBear.py -------------------------------------------------------------------------------- /bears/vhdl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/vimscript/VintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/vimscript/VintBear.py -------------------------------------------------------------------------------- /bears/vimscript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/xml2/XMLBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/xml2/XMLBear.py -------------------------------------------------------------------------------- /bears/xml2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bears/yaml/RAMLLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/yaml/RAMLLintBear.py -------------------------------------------------------------------------------- /bears/yaml/TravisLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/yaml/TravisLintBear.py -------------------------------------------------------------------------------- /bears/yaml/YAMLLintBear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/bears/yaml/YAMLLintBear.py -------------------------------------------------------------------------------- /bears/yaml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coala-bears.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/coala-bears.cabal -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/composer.json -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/docs-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/docs/index.rst -------------------------------------------------------------------------------- /ignore.txt: -------------------------------------------------------------------------------- 1 | language-check 2 | lxml 3 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/package.json -------------------------------------------------------------------------------- /prof/combined.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/combined.prof -------------------------------------------------------------------------------- /prof/requirements.txt.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/requirements.txt.prof -------------------------------------------------------------------------------- /prof/test-requirements.txt.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/test-requirements.txt.prof -------------------------------------------------------------------------------- /prof/test_cve_key_checker.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/test_cve_key_checker.prof -------------------------------------------------------------------------------- /prof/test_with_no_pinned_requirements.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/test_with_no_pinned_requirements.prof -------------------------------------------------------------------------------- /prof/test_with_no_requirements.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/test_with_no_requirements.prof -------------------------------------------------------------------------------- /prof/test_with_vulnerability.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/test_with_vulnerability.prof -------------------------------------------------------------------------------- /prof/test_without_vulnerability.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/prof/test_without_vulnerability.prof -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.6 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apertium/ApertiumLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/apertium/ApertiumLintBearTest.py -------------------------------------------------------------------------------- /tests/apertium/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apertium/test_files/apertium-ba-ad.en.dix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/apertium/test_files/apertium-ba-ad.en.dix -------------------------------------------------------------------------------- /tests/apertium/test_files/apertium-go-od.en.dix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/apertium/test_files/apertium-go-od.en.dix -------------------------------------------------------------------------------- /tests/apertium/test_files/apertium_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/apertium/test_files/apertium_config.json -------------------------------------------------------------------------------- /tests/c_languages/ArtisticStyleBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/ArtisticStyleBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/CPPCheckBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/CPPCheckBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/CPPCleanBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/CPPCleanBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/CPPLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/CPPLintBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/CSecurityBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/CSecurityBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/CSharpLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/CSharpLintBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/ClangBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/ClangBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/ClangComplexityBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/ClangComplexityBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/GNUIndentBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/GNUIndentBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/__init__.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/ClangASTPrintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/ClangASTPrintBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/ClangCloneDetectionBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/ClangCloneDetectionBearTest.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/ClangCountVectorCreatorTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/ClangCountVectorCreatorTest.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/ClangCountingConditionsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/ClangCountingConditionsTest.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/CloneDetectionRoutinesTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/CloneDetectionRoutinesTest.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/CountVectorTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/CountVectorTest.py -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/LICENSE -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/bubblesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/bubblesort.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/faculty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/faculty.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/kernel_scrolling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/kernel_scrolling.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/one_big_one_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/one_big_one_small.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/python_casing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/python_casing.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/python_casing2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/python_casing2.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s1a.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s1b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s1b.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s1c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s1c.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2a.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2b.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2c.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s2d.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3a.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3b.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3c.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3d.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s3e.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4a.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4b.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4c.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/s4d.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/clones/several_duplicates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/clones/several_duplicates.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/kernel_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/kernel_print.h -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/builder_editorconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/builder_editorconfig.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/kernel_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/kernel_utilities.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/pythonparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/pythonparser.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/sorting_algs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/sorting_algs.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/string_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/string_stuff.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/non_clones/test.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/clone_detection_samples/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/clone_detection_samples/stdint.h -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/conditions_samples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/conditions_samples.c -------------------------------------------------------------------------------- /tests/c_languages/codeclone_detection/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/codeclone_detection/sample.c -------------------------------------------------------------------------------- /tests/c_languages/cppcheck_test_files/bad_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/cppcheck_test_files/bad_file.cpp -------------------------------------------------------------------------------- /tests/c_languages/cppcheck_test_files/good_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/cppcheck_test_files/good_file.cpp -------------------------------------------------------------------------------- /tests/c_languages/cppcheck_test_files/warn_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/cppcheck_test_files/warn_file.cpp -------------------------------------------------------------------------------- /tests/c_languages/test_files/csharplint_test1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/test_files/csharplint_test1.cs -------------------------------------------------------------------------------- /tests/c_languages/test_files/csharplint_test2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/test_files/csharplint_test2.cs -------------------------------------------------------------------------------- /tests/c_languages/test_files/empty_declarations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/c_languages/test_files/empty_declarations.c -------------------------------------------------------------------------------- /tests/c_languages/test_files/headers1/foo.h: -------------------------------------------------------------------------------- 1 | void foo(){ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /tests/c_languages/test_files/headers2/bar.h: -------------------------------------------------------------------------------- 1 | void bar(){ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /tests/cmake/CMakeLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/cmake/CMakeLintBearTest.py -------------------------------------------------------------------------------- /tests/cmake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cmake/test_files/cmake_config.txt: -------------------------------------------------------------------------------- 1 | filter=-readability/wonkycase 2 | -------------------------------------------------------------------------------- /tests/coalaBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/coalaBearTest.py -------------------------------------------------------------------------------- /tests/coffee_script/CoffeeLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/coffee_script/CoffeeLintBearTest.py -------------------------------------------------------------------------------- /tests/coffee_script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/configfiles/DockerfileLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/configfiles/DockerfileLintBearTest.py -------------------------------------------------------------------------------- /tests/configfiles/PuppetLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/configfiles/PuppetLintBearTest.py -------------------------------------------------------------------------------- /tests/configfiles/TOMLBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/configfiles/TOMLBearTest.py -------------------------------------------------------------------------------- /tests/configfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/configfiles/dockerfile_lint_test_files/default_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/configfiles/dockerfile_lint_test_files/default_rule.yaml -------------------------------------------------------------------------------- /tests/configfiles/dockerfile_lint_test_files/sample_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/configfiles/dockerfile_lint_test_files/sample_rule.yaml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/css/CSSAutoPrefixBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/CSSAutoPrefixBearTest.py -------------------------------------------------------------------------------- /tests/css/CSSCombBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/CSSCombBearTest.py -------------------------------------------------------------------------------- /tests/css/CSSLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/CSSLintBearTest.py -------------------------------------------------------------------------------- /tests/css/StyleLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/StyleLintBearTest.py -------------------------------------------------------------------------------- /tests/css/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/css/csscomb_test_files/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/csscomb_test_files/.csscomb.json -------------------------------------------------------------------------------- /tests/css/test_files/stylelint_bad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/test_files/stylelint_bad.css -------------------------------------------------------------------------------- /tests/css/test_files/stylelint_good.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/css/test_files/stylelint_good.css -------------------------------------------------------------------------------- /tests/csv/CSVLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/csv/CSVLintBearTest.py -------------------------------------------------------------------------------- /tests/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dart/DartLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/dart/DartLintBearTest.py -------------------------------------------------------------------------------- /tests/dart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/documentation/DocGrammarBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/DocGrammarBearTest.py -------------------------------------------------------------------------------- /tests/documentation/DocumentationStyleBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/DocumentationStyleBearTest.py -------------------------------------------------------------------------------- /tests/documentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file.java.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file.java.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file.java.test.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file.java.test.correct -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file.py.test.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file.py.test.correct -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file2.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file2.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file2.py.test.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file2.py.test.correct -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file3.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file3.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file3.py.test.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file3.py.test.correct -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file4.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file4.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file4.py.test.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file4.py.test.correct -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file5.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file5.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/bad_file5.py.test.correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/bad_file5.py.test.correct -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/good_file.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/good_file.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/good_file2.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/good_file2.py.test -------------------------------------------------------------------------------- /tests/documentation/test_files/DocumentationStyleBear/good_file3.py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/documentation/test_files/DocumentationStyleBear/good_file3.py.test -------------------------------------------------------------------------------- /tests/elm/ElmLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/elm/ElmLintBearTest.py -------------------------------------------------------------------------------- /tests/elm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/general/AnnotationBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/AnnotationBearTest.py -------------------------------------------------------------------------------- /tests/general/CPDBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/CPDBearTest.py -------------------------------------------------------------------------------- /tests/general/DuplicateFileBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/DuplicateFileBearTest.py -------------------------------------------------------------------------------- /tests/general/FilenameBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/FilenameBearTest.py -------------------------------------------------------------------------------- /tests/general/HTTPSBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/HTTPSBearTest.py -------------------------------------------------------------------------------- /tests/general/IndentationBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/IndentationBearTest.py -------------------------------------------------------------------------------- /tests/general/InvalidLinkBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/InvalidLinkBearTest.py -------------------------------------------------------------------------------- /tests/general/KeywordBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/KeywordBearTest.py -------------------------------------------------------------------------------- /tests/general/LicenseCheckBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/LicenseCheckBearTest.py -------------------------------------------------------------------------------- /tests/general/LicenseHeaderBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/LicenseHeaderBearTest.py -------------------------------------------------------------------------------- /tests/general/LineContinuationBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/LineContinuationBearTest.py -------------------------------------------------------------------------------- /tests/general/LineCountBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/LineCountBearTest.py -------------------------------------------------------------------------------- /tests/general/LineLengthBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/LineLengthBearTest.py -------------------------------------------------------------------------------- /tests/general/MementoBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/MementoBearTest.py -------------------------------------------------------------------------------- /tests/general/QuotesBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/QuotesBearTest.py -------------------------------------------------------------------------------- /tests/general/SpaceConsistencyBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/SpaceConsistencyBearTest.py -------------------------------------------------------------------------------- /tests/general/TextLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/TextLintBearTest.py -------------------------------------------------------------------------------- /tests/general/URLBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/URLBearTest.py -------------------------------------------------------------------------------- /tests/general/URLHeadBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/URLHeadBearTest.py -------------------------------------------------------------------------------- /tests/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/general/coalaBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/coalaBearTest.py -------------------------------------------------------------------------------- /tests/general/code_duplication_samples/bad_code.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/code_duplication_samples/bad_code.java -------------------------------------------------------------------------------- /tests/general/code_duplication_samples/good_code.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/code_duplication_samples/good_code.java -------------------------------------------------------------------------------- /tests/general/duplicate_test_files/complexFirst.txt: -------------------------------------------------------------------------------- 1 | 4 r34l ch4ll3n63: 123 ÄÖü ABc @€¥ §&% {[( ←↓→↑ ĦŊħ ß°^ \\\n\u2192 2 | -------------------------------------------------------------------------------- /tests/general/duplicate_test_files/complexSecond.txt: -------------------------------------------------------------------------------- 1 | 4 r34l ch4ll3n63: 123 ÄÖü ABc @€¥ §&% {[( ←↓→↑ ĦŊħ ß°^ \\\n\u2192 2 | -------------------------------------------------------------------------------- /tests/general/duplicate_test_files/noMatch.txt: -------------------------------------------------------------------------------- 1 | I dont match with any other file! 2 | -------------------------------------------------------------------------------- /tests/general/duplicate_test_files/smallFirst.txt: -------------------------------------------------------------------------------- 1 | This is a small file! 2 | -------------------------------------------------------------------------------- /tests/general/duplicate_test_files/smallSecond.txt: -------------------------------------------------------------------------------- 1 | This is a small file! 2 | -------------------------------------------------------------------------------- /tests/general/licensecheck_test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/general/licensecheck_test_files/apache_license_without_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/licensecheck_test_files/apache_license_without_copyright.py -------------------------------------------------------------------------------- /tests/general/licensecheck_test_files/copyright_without_license.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2008 2 | -------------------------------------------------------------------------------- /tests/general/licensecheck_test_files/mit_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/licensecheck_test_files/mit_license.py -------------------------------------------------------------------------------- /tests/general/licensecheck_test_files/no_license.py: -------------------------------------------------------------------------------- 1 | # No license in this file 2 | print('Hello world') 3 | -------------------------------------------------------------------------------- /tests/general/licenseheader_test_files/CopyrightWithoutAuthor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/licenseheader_test_files/CopyrightWithoutAuthor.java -------------------------------------------------------------------------------- /tests/general/licenseheader_test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/general/licenseheader_test_files/copyright_with_different_author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/licenseheader_test_files/copyright_with_different_author.txt -------------------------------------------------------------------------------- /tests/general/licenseheader_test_files/copyright_with_given_author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/licenseheader_test_files/copyright_with_given_author.txt -------------------------------------------------------------------------------- /tests/general/licenseheader_test_files/no_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/licenseheader_test_files/no_copyright.py -------------------------------------------------------------------------------- /tests/general/mementobear_test_files/google_memento_redirect_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/mementobear_test_files/google_memento_redirect_response.json -------------------------------------------------------------------------------- /tests/general/mementobear_test_files/google_memento_timemap_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/mementobear_test_files/google_memento_timemap_response.json -------------------------------------------------------------------------------- /tests/general/textlint_test_files/.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/.textlintrc -------------------------------------------------------------------------------- /tests/general/textlint_test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_alex_no_dead_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_alex_no_dead_link.md -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_date_weekday_mismatch.txt: -------------------------------------------------------------------------------- 1 | 2016-12-29 (Friday) -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_ginger.rst: -------------------------------------------------------------------------------- 1 | This is a spelling mistaek. 2 | -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_max_comma.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_max_comma.re -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_ng_word_unexpanded_acronym.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_ng_word_unexpanded_acronym.md -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_ng_words_acronym_list_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_ng_words_acronym_list_item.md -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_no_empty_section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_no_empty_section.md -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_no_start_duplicated_conjunction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_no_start_duplicated_conjunction.txt -------------------------------------------------------------------------------- /tests/general/textlint_test_files/bad_write_good_common_misspellings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/bad_write_good_common_misspellings.html -------------------------------------------------------------------------------- /tests/general/textlint_test_files/good_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/general/textlint_test_files/good_file.md -------------------------------------------------------------------------------- /tests/generate_packageTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/generate_packageTest.py -------------------------------------------------------------------------------- /tests/generate_package_input_files/template_file.py.in: -------------------------------------------------------------------------------- 1 | $who has gone $sport again. 2 | -------------------------------------------------------------------------------- /tests/gettext/DennisBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gettext/DennisBearTest.py -------------------------------------------------------------------------------- /tests/gettext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gettext/test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gettext/test_files/dennis_invalid_test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gettext/test_files/dennis_invalid_test.po -------------------------------------------------------------------------------- /tests/gettext/test_files/dennis_valid_test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gettext/test_files/dennis_valid_test.po -------------------------------------------------------------------------------- /tests/gherkin/GherkinLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/GherkinLintBearTest.py -------------------------------------------------------------------------------- /tests/gherkin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gherkin/config_files/.gherkin-lintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/config_files/.gherkin-lintrc -------------------------------------------------------------------------------- /tests/gherkin/test_files/.gherkin-lintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files/.gherkin-lintrc -------------------------------------------------------------------------------- /tests/gherkin/test_files/DuplicateFeatureName-Pt1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files/DuplicateFeatureName-Pt1.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files/DuplicateFeatureName-Pt2.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files/DuplicateFeatureName-Pt2.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/DuplicateFeatureName-Pt1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/DuplicateFeatureName-Pt1.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/DuplicateFeatureName-Pt2.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/DuplicateFeatureName-Pt2.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/DuplicateScenarioName.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/DuplicateScenarioName.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/DuplicateTags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/DuplicateTags.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/EmptyFeature.feature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gherkin/test_files1/MultipleEmptyLines.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/MultipleEmptyLines.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/NoHomogenousTags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/NoHomogenousTags.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/NoNewLineAtEOF.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/NoNewLineAtEOF.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/NoRestrictedTags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/NoRestrictedTags.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/NoScenarios.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/NoScenarios.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/NoSuperfluousTags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/NoSuperfluousTags.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/OnlyScenarioOutlines.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/OnlyScenarioOutlines.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/PartiallyCommentedTagLine.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/PartiallyCommentedTagLine.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/ScenarioOutlineWithoutExamples.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/ScenarioOutlineWithoutExamples.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/TrailingSpaces.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/TrailingSpaces.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/TrailingTab.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/TrailingTab.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/UnnamedFeature.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/UnnamedFeature.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/UnnamedScenario.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/UnnamedScenario.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files1/UseAnd.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files1/UseAnd.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files2/MultipleBackgrounds.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files2/MultipleBackgrounds.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files2/MultipleFeatures.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files2/MultipleFeatures.feature -------------------------------------------------------------------------------- /tests/gherkin/test_files2/TagOnBackground.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/gherkin/test_files2/TagOnBackground.feature -------------------------------------------------------------------------------- /tests/go/GoErrCheckBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GoErrCheckBearTest.py -------------------------------------------------------------------------------- /tests/go/GoImportsBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GoImportsBearTest.py -------------------------------------------------------------------------------- /tests/go/GoLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GoLintBearTest.py -------------------------------------------------------------------------------- /tests/go/GoReturnsBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GoReturnsBearTest.py -------------------------------------------------------------------------------- /tests/go/GoTypeBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GoTypeBearTest.py -------------------------------------------------------------------------------- /tests/go/GoVetBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GoVetBearTest.py -------------------------------------------------------------------------------- /tests/go/GofmtBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/GofmtBearTest.py -------------------------------------------------------------------------------- /tests/go/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/go/test_files/vet_bad_semantics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/test_files/vet_bad_semantics.go -------------------------------------------------------------------------------- /tests/go/test_files/vet_bad_syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/test_files/vet_bad_syntax.go -------------------------------------------------------------------------------- /tests/go/test_files/vet_good.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/go/test_files/vet_good.go -------------------------------------------------------------------------------- /tests/haml/HAMLLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/HAMLLintBearTest.py -------------------------------------------------------------------------------- /tests/haml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/.haml-lint.yml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_alignment_tabs_good_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_alignment_tabs_good_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_alt_text_bad_file.haml: -------------------------------------------------------------------------------- 1 | %img{ src: 'my-photo.jpg' } 2 | -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_alt_text_good_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_alt_text_good_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_consecutive_comments_bad_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_consecutive_comments_bad_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_consecutive_comments_good_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_consecutive_comments_good_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_consecutive_comments_good_file_via_config.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_consecutive_comments_good_file_via_config.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_consecutive_silent_scripts_bad_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_consecutive_silent_scripts_bad_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_consecutive_silent_scripts_good_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_consecutive_silent_scripts_good_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_no_trailing_whitespace_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_no_trailing_whitespace_file.haml -------------------------------------------------------------------------------- /tests/haml/hamllint_test_files/test_trailing_whitespace_file.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haml/hamllint_test_files/test_trailing_whitespace_file.haml -------------------------------------------------------------------------------- /tests/haskell/GhcModBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haskell/GhcModBearTest.py -------------------------------------------------------------------------------- /tests/haskell/HaskellLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/haskell/HaskellLintBearTest.py -------------------------------------------------------------------------------- /tests/haskell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hypertext/BootLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/BootLintBearTest.py -------------------------------------------------------------------------------- /tests/hypertext/HTMLHintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/HTMLHintBearTest.py -------------------------------------------------------------------------------- /tests/hypertext/HTMLLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/HTMLLintBearTest.py -------------------------------------------------------------------------------- /tests/hypertext/HTTPoliceLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/HTTPoliceLintBearTest.py -------------------------------------------------------------------------------- /tests/hypertext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/.htmlhintrc -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_attribute_duplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/test_attribute_duplication.html -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_bad_inline_style.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_bad_lowercase_attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/test_bad_lowercase_attribute.html -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_bad_lowercase_tagname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/test_bad_lowercase_tagname.html -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_bad_tag_pair.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_bad_unique_attribute_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/test_bad_unique_attribute_id.html -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_doctype_at_beginning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/test_doctype_at_beginning.html -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_links_in_href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/htmlhint_test_files/test_links_in_href.html -------------------------------------------------------------------------------- /tests/hypertext/htmlhint_test_files/test_require_alt_attribute.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/hypertext/httpolice_test_files/test_bad_header.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/httpolice_test_files/test_bad_header.har -------------------------------------------------------------------------------- /tests/hypertext/httpolice_test_files/test_syntax_error_in_request_target.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/httpolice_test_files/test_syntax_error_in_request_target.har -------------------------------------------------------------------------------- /tests/hypertext/httpolice_test_files/test_valid_file.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/hypertext/httpolice_test_files/test_valid_file.har -------------------------------------------------------------------------------- /tests/java/CheckstyleBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/java/CheckstyleBearTest.py -------------------------------------------------------------------------------- /tests/java/InferBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/java/InferBearTest.py -------------------------------------------------------------------------------- /tests/java/JavaPMDBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/java/JavaPMDBearTest.py -------------------------------------------------------------------------------- /tests/java/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/java/test_files/CheckstyleBad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/java/test_files/CheckstyleBad.java -------------------------------------------------------------------------------- /tests/java/test_files/CheckstyleGood.java: -------------------------------------------------------------------------------- 1 | class CheckstyleGood { 2 | } 3 | -------------------------------------------------------------------------------- /tests/java/test_files/checkstyle_empty_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/java/test_files/checkstyle_empty_config.xml -------------------------------------------------------------------------------- /tests/jinja2/Jinja2BearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/jinja2/Jinja2BearTest.py -------------------------------------------------------------------------------- /tests/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/ESLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/ESLintBearTest.py -------------------------------------------------------------------------------- /tests/js/HappinessLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/HappinessLintBearTest.py -------------------------------------------------------------------------------- /tests/js/JSComplexityBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/JSComplexityBearTest.py -------------------------------------------------------------------------------- /tests/js/JSHintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/JSHintBearTest.py -------------------------------------------------------------------------------- /tests/js/JSONFormatBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/JSONFormatBearTest.py -------------------------------------------------------------------------------- /tests/js/JSStandardBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/JSStandardBearTest.py -------------------------------------------------------------------------------- /tests/js/PrettierLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/PrettierLintBearTest.py -------------------------------------------------------------------------------- /tests/js/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/test_files/eslintconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/test_files/eslintconfig.json -------------------------------------------------------------------------------- /tests/js/test_files/eslintconfig_badplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/test_files/eslintconfig_badplugin.json -------------------------------------------------------------------------------- /tests/js/test_files/eslintconfig_import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/test_files/eslintconfig_import.json -------------------------------------------------------------------------------- /tests/js/test_files/jshintconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/test_files/jshintconfig.json -------------------------------------------------------------------------------- /tests/js/test_files/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/js/test_files/test.js -------------------------------------------------------------------------------- /tests/julia/JuliaLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/julia/JuliaLintBearTest.py -------------------------------------------------------------------------------- /tests/julia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/latex/LatexLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/latex/LatexLintBearTest.py -------------------------------------------------------------------------------- /tests/latex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lua/LuaLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/lua/LuaLintBearTest.py -------------------------------------------------------------------------------- /tests/lua/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/markdown/MarkdownBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/markdown/MarkdownBearTest.py -------------------------------------------------------------------------------- /tests/markdown/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab/MatlabIndentationBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/matlab/MatlabIndentationBearTest.py -------------------------------------------------------------------------------- /tests/matlab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/natural_language/AlexBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/natural_language/AlexBearTest.py -------------------------------------------------------------------------------- /tests/natural_language/LanguageToolBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/natural_language/LanguageToolBearTest.py -------------------------------------------------------------------------------- /tests/natural_language/ProseLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/natural_language/ProseLintBearTest.py -------------------------------------------------------------------------------- /tests/natural_language/SpellCheckBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/natural_language/SpellCheckBearTest.py -------------------------------------------------------------------------------- /tests/natural_language/WriteGoodLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/natural_language/WriteGoodLintBearTest.py -------------------------------------------------------------------------------- /tests/natural_language/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/perl/PerlCriticBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/perl/PerlCriticBearTest.py -------------------------------------------------------------------------------- /tests/perl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/perl/testfiles/.perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/perl/testfiles/.perlcriticrc -------------------------------------------------------------------------------- /tests/php/PHPCodeSnifferBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/PHPCodeSnifferBearTest.py -------------------------------------------------------------------------------- /tests/php/PHPLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/PHPLintBearTest.py -------------------------------------------------------------------------------- /tests/php/PHPMessDetectorBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/PHPMessDetectorBearTest.py -------------------------------------------------------------------------------- /tests/php/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/php/phpmessdetector_test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/php/phpmessdetector_test_files/cleancode_violation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/phpmessdetector_test_files/cleancode_violation.php -------------------------------------------------------------------------------- /tests/php/phpmessdetector_test_files/codesize_violation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/phpmessdetector_test_files/codesize_violation.php -------------------------------------------------------------------------------- /tests/php/phpmessdetector_test_files/design_violation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/phpmessdetector_test_files/design_violation.php -------------------------------------------------------------------------------- /tests/php/phpmessdetector_test_files/naming_violation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/phpmessdetector_test_files/naming_violation.php -------------------------------------------------------------------------------- /tests/php/phpmessdetector_test_files/unusedcode_violation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/php/phpmessdetector_test_files/unusedcode_violation.php -------------------------------------------------------------------------------- /tests/php/test_files/phplint_test1.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/php/test_files/phplint_test2.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/pug/PugLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/pug/PugLintBearTest.py -------------------------------------------------------------------------------- /tests/pug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/.pug-lintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/pug/puglint_test_files/.pug-lintrc -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/block_expansion.pug: -------------------------------------------------------------------------------- 1 | p: strong text 2 | -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/class_and_id_literals.pug: -------------------------------------------------------------------------------- 1 | .class 2 | #id 3 | -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/class_attribute_with_static_value.pug: -------------------------------------------------------------------------------- 1 | span(class='foo') 2 | -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/html_text.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/pug/puglint_test_files/html_text.pug -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/legacy_mixin_call.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/pug/puglint_test_files/legacy_mixin_call.pug -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/multiple_line_breaks.pug: -------------------------------------------------------------------------------- 1 | div 2 | 3 | 4 | div 5 | -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/preferred_quotation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/pug/puglint_test_files/preferred_quotation.pug -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/spaces_inside_attribute_brackets.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/pug/puglint_test_files/spaces_inside_attribute_brackets.pug -------------------------------------------------------------------------------- /tests/pug/puglint_test_files/test_file.pug: -------------------------------------------------------------------------------- 1 | maximum 2 | number 3 | of 4 | lines 5 | violation 6 | -------------------------------------------------------------------------------- /tests/python/BanditBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/BanditBearTest.py -------------------------------------------------------------------------------- /tests/python/MypyBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/MypyBearTest.py -------------------------------------------------------------------------------- /tests/python/PEP8BearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PEP8BearTest.py -------------------------------------------------------------------------------- /tests/python/PEP8NotebookBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PEP8NotebookBearTest.py -------------------------------------------------------------------------------- /tests/python/PyCommentedCodeBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyCommentedCodeBearTest.py -------------------------------------------------------------------------------- /tests/python/PyDocStyleBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyDocStyleBearTest.py -------------------------------------------------------------------------------- /tests/python/PyFlakesBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyFlakesBearTest.py -------------------------------------------------------------------------------- /tests/python/PyImportSortBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyImportSortBearTest.py -------------------------------------------------------------------------------- /tests/python/PyLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyLintBearTest.py -------------------------------------------------------------------------------- /tests/python/PyStringConcatBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyStringConcatBearTest.py -------------------------------------------------------------------------------- /tests/python/PyUnusedCodeBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyUnusedCodeBearTest.py -------------------------------------------------------------------------------- /tests/python/PycodestyleBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PycodestyleBearTest.py -------------------------------------------------------------------------------- /tests/python/PyromaBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PyromaBearTest.py -------------------------------------------------------------------------------- /tests/python/PythonPackageInitBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/PythonPackageInitBearTest.py -------------------------------------------------------------------------------- /tests/python/RadonBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/RadonBearTest.py -------------------------------------------------------------------------------- /tests/python/VultureBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/VultureBearTest.py -------------------------------------------------------------------------------- /tests/python/YapfBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/YapfBearTest.py -------------------------------------------------------------------------------- /tests/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/bandit_test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/bandit_test_files/assert.py: -------------------------------------------------------------------------------- 1 | assert True 2 | -------------------------------------------------------------------------------- /tests/python/bandit_test_files/exec-py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/bandit_test_files/exec-py2.py -------------------------------------------------------------------------------- /tests/python/bandit_test_files/good_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/bandit_test_files/good_file.py -------------------------------------------------------------------------------- /tests/python/bandit_test_files/httpoxy_cgihandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/bandit_test_files/httpoxy_cgihandler.py -------------------------------------------------------------------------------- /tests/python/bandit_test_files/jinja2_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/bandit_test_files/jinja2_templating.py -------------------------------------------------------------------------------- /tests/python/bandit_test_files/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/bandit_test_files/skip.py -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/complete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/complete/complete/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | os.__doc__ 4 | -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/complete/complete/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/pyroma_test_files/complete/complete/tests.py -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/complete/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/pyroma_test_files/complete/setup.cfg -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/complete/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/pyroma_test_files/complete/setup.py -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/minimal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/minimal/minimal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/minimal/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/pyroma_test_files/minimal/setup.py -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/no_setup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/pyroma_test_files/no_setup/no_setup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/requirements/PinRequirementsBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/requirements/PinRequirementsBearTest.py -------------------------------------------------------------------------------- /tests/python/requirements/PySafetyBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/requirements/PySafetyBearTest.py -------------------------------------------------------------------------------- /tests/python/requirements/PySafetyBearWithoutMockTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/requirements/PySafetyBearWithoutMockTest.py -------------------------------------------------------------------------------- /tests/python/requirements/PySafety_test_files/requirement.txt: -------------------------------------------------------------------------------- 1 | bottle==0.10.0 2 | locustio==0.5.1 3 | -------------------------------------------------------------------------------- /tests/python/requirements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/test_files/pylint_config: -------------------------------------------------------------------------------- 1 | [MESSAGE CONTROL] 2 | disable=all 3 | -------------------------------------------------------------------------------- /tests/python/test_files/pylint_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/test_files/pylint_test.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unreachable_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unreachable_else.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unsatisfiable_if.py: -------------------------------------------------------------------------------- 1 | if False: 2 | print('Unreachable') 3 | -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unsatisfiable_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unsatisfiable_while.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unused_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unused_arg.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unused_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unused_class.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unused_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unused_function.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unused_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unused_import.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unused_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unused_property.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/unused_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/python/vulture_test_files/unused_variable.py -------------------------------------------------------------------------------- /tests/python/vulture_test_files/used_variable.py: -------------------------------------------------------------------------------- 1 | x = 2 2 | print(x) 3 | -------------------------------------------------------------------------------- /tests/r/FormatRBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/r/FormatRBearTest.py -------------------------------------------------------------------------------- /tests/r/RLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/r/RLintBearTest.py -------------------------------------------------------------------------------- /tests/r/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rest/RSTcheckBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/rest/RSTcheckBearTest.py -------------------------------------------------------------------------------- /tests/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rest/reSTLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/rest/reSTLintBearTest.py -------------------------------------------------------------------------------- /tests/ruby/RuboCopBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/RuboCopBearTest.py -------------------------------------------------------------------------------- /tests/ruby/RubyFastererBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/RubyFastererBearTest.py -------------------------------------------------------------------------------- /tests/ruby/RubySecurityBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/RubySecurityBearTest.py -------------------------------------------------------------------------------- /tests/ruby/RubySmellBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/RubySmellBearTest.py -------------------------------------------------------------------------------- /tests/ruby/RubySyntaxBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/RubySyntaxBearTest.py -------------------------------------------------------------------------------- /tests/ruby/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ruby/brakeman_test_files/app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/brakeman_test_files/app/models/account.rb -------------------------------------------------------------------------------- /tests/ruby/brakeman_test_files/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/brakeman_test_files/app/models/user.rb -------------------------------------------------------------------------------- /tests/ruby/fasterer_test_files/module_eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/fasterer_test_files/module_eval.rb -------------------------------------------------------------------------------- /tests/ruby/fasterer_test_files/sort_vs_sort_by.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/fasterer_test_files/sort_vs_sort_by.rb -------------------------------------------------------------------------------- /tests/ruby/test_files/bad_file.rb: -------------------------------------------------------------------------------- 1 | def badName 2 | test if something 3 | end 4 | -------------------------------------------------------------------------------- /tests/ruby/test_files/good_file.rb: -------------------------------------------------------------------------------- 1 | def good_name 2 | test if something 3 | end 4 | -------------------------------------------------------------------------------- /tests/ruby/test_files/indent_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/test_files/indent_file.rb -------------------------------------------------------------------------------- /tests/ruby/test_files/rubocop_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/ruby/test_files/rubocop_config.yaml -------------------------------------------------------------------------------- /tests/scala/ScalaLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/scala/ScalaLintBearTest.py -------------------------------------------------------------------------------- /tests/scala/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scala/test_files/scala_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/scala/test_files/scala_config.xml -------------------------------------------------------------------------------- /tests/scss/SASSLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/scss/SASSLintBearTest.py -------------------------------------------------------------------------------- /tests/scss/SCSSLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/scss/SCSSLintBearTest.py -------------------------------------------------------------------------------- /tests/scss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scss/test_files/sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/scss/test_files/sass-lint.yml -------------------------------------------------------------------------------- /tests/shell/BashateBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/shell/BashateBearTest.py -------------------------------------------------------------------------------- /tests/shell/ShellCheckBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/shell/ShellCheckBearTest.py -------------------------------------------------------------------------------- /tests/shell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sql/SQLFormatBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/sql/SQLFormatBearTest.py -------------------------------------------------------------------------------- /tests/sql/SQLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/sql/SQLintBearTest.py -------------------------------------------------------------------------------- /tests/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stylus/StylintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/StylintBearTest.py -------------------------------------------------------------------------------- /tests/stylus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/.stylintrc -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_alphabetical_order.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_bad_alphabetical_order.styl -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_brackets.styl: -------------------------------------------------------------------------------- 1 | .pageContent { 2 | padding: 1em 3 | } 4 | -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_duplicates.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_bad_duplicates.styl -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_missing_colon.styl: -------------------------------------------------------------------------------- 1 | test = @block 2 | margin 0 3 | -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_mixed_spaces_tabs.styl: -------------------------------------------------------------------------------- 1 | test = @block 2 | margin: 0 3 | padding-right: 2em 4 | -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_no_important.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_bad_no_important.styl -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_placeholder_space_color.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_bad_placeholder_space_color.styl -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_semicolon.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_bad_semicolon.styl -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_bad_trailing_whitespace.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_bad_trailing_whitespace.styl -------------------------------------------------------------------------------- /tests/stylus/stylint_test_files/test_valid_file.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/stylus/stylint_test_files/test_valid_file.styl -------------------------------------------------------------------------------- /tests/swift/TailorBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/swift/TailorBearTest.py -------------------------------------------------------------------------------- /tests/swift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/swift/test_files/tailor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/swift/test_files/tailor.yaml -------------------------------------------------------------------------------- /tests/typescript/TSLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/typescript/TSLintBearTest.py -------------------------------------------------------------------------------- /tests/typescript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/typescript/test_files/tslint-single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/typescript/test_files/tslint-single.json -------------------------------------------------------------------------------- /tests/typescript/test_files/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/typescript/test_files/tslint.json -------------------------------------------------------------------------------- /tests/vcs/CommitBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/CommitBearTest.py -------------------------------------------------------------------------------- /tests/vcs/VCSCommitMetadataBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/VCSCommitMetadataBearTest.py -------------------------------------------------------------------------------- /tests/vcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vcs/git/CISkipInspectBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/git/CISkipInspectBearTest.py -------------------------------------------------------------------------------- /tests/vcs/git/GitCommitBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/git/GitCommitBearTest.py -------------------------------------------------------------------------------- /tests/vcs/git/GitCommitMetadataBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/git/GitCommitMetadataBearTest.py -------------------------------------------------------------------------------- /tests/vcs/git/GitIgnoreBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/git/GitIgnoreBearTest.py -------------------------------------------------------------------------------- /tests/vcs/git/GitLinearCommitBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/git/GitLinearCommitBearTest.py -------------------------------------------------------------------------------- /tests/vcs/git/GitRevertInspectBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/git/GitRevertInspectBearTest.py -------------------------------------------------------------------------------- /tests/vcs/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vcs/mercurial/HgCommitBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vcs/mercurial/HgCommitBearTest.py -------------------------------------------------------------------------------- /tests/vcs/mercurial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/verilog/VerilogLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/verilog/VerilogLintBearTest.py -------------------------------------------------------------------------------- /tests/verilog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vhdl/VHDLLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vhdl/VHDLLintBearTest.py -------------------------------------------------------------------------------- /tests/vhdl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vimscript/VintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/vimscript/VintBearTest.py -------------------------------------------------------------------------------- /tests/vimscript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/xml2/XMLBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/XMLBearTest.py -------------------------------------------------------------------------------- /tests/xml2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/xml2/test_files/concept-invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/concept-invalid.xml -------------------------------------------------------------------------------- /tests/xml2/test_files/concept-valid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/concept-valid.xml -------------------------------------------------------------------------------- /tests/xml2/test_files/dtd-error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/dtd-error.xml -------------------------------------------------------------------------------- /tests/xml2/test_files/note.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/note.dtd -------------------------------------------------------------------------------- /tests/xml2/test_files/note.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/note.rng -------------------------------------------------------------------------------- /tests/xml2/test_files/note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/note.xml -------------------------------------------------------------------------------- /tests/xml2/test_files/note.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/note.xsd -------------------------------------------------------------------------------- /tests/xml2/test_files/rng-error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/rng-error.xml -------------------------------------------------------------------------------- /tests/xml2/test_files/xsd-error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/xml2/test_files/xsd-error.xml -------------------------------------------------------------------------------- /tests/yaml/RAMLLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/yaml/RAMLLintBearTest.py -------------------------------------------------------------------------------- /tests/yaml/TravisLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/yaml/TravisLintBearTest.py -------------------------------------------------------------------------------- /tests/yaml/YAMLLintBearTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/yaml/YAMLLintBearTest.py -------------------------------------------------------------------------------- /tests/yaml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/yaml/travislint_test_files/.bad_travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/yaml/travislint_test_files/.bad_travis.yml -------------------------------------------------------------------------------- /tests/yaml/travislint_test_files/.empty_travis.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/yaml/travislint_test_files/.good_travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tests/yaml/travislint_test_files/.good_travis.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/coala-bears/HEAD/tox.ini --------------------------------------------------------------------------------