Commit 2fb7a9a0d8ad461af8839a8fef5ee55f3bbe20af

Authored by Moritz Wirger
1 parent 929d4b06

Add lgtm.yml & exclude library code from analysis

Showing 1 changed file with 25 additions and 0 deletions
lgtm.yml 0 → 100644
  1 +path_classifiers:
  2 + #docs:
  3 +
  4 + # The default behavior is to tag all files created during the
  5 + # build as `generated`. Results are hidden for generated code. You can tag
  6 + # further files as being generated by adding them to the `generated` section.
  7 + #generated:
  8 + # By default, all files not checked into the repository are considered to be
  9 + # 'generated'.
  10 +
  11 + # The default behavior is to tag library code as `library`. Results are hidden
  12 + # for library code. You can tag further files as being library code by adding them
  13 + # to the `library` section.
  14 + library:
  15 + # Classify all files in the top-level directory lib/mbedtls as library code.
  16 + - lib/mbedtls
  17 +
  18 + # The default behavior is to tag template files as `template`. Results are hidden
  19 + # for template files. You can tag further files as being template files by adding
  20 + # them to the `template` section.
  21 + #template:
  22 +
  23 + test:
  24 + # Classify all files in the top-level directory test/ as test code.
  25 + - test
... ...