added factory::unified_diff as well, moved unified_diffs to factory #1900
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Code Base | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Lint code base | |
uses: docker://github/super-linter:v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# until clang-format github action uses same version as used on MacOS | |
VALIDATE_CLANG_FORMAT: false | |
# until C_CPPLINT_ARGUMENTS variable works? | |
VALIDATE_CPP: false | |
# we use escape sequence in wex-macros.xml | |
VALIDATE_XML: false | |
VALIDATE_SQLFLUFF: false | |
# exclude xsl, all externals, | |
FILTER_REGEX_EXCLUDE: .*data/*.xsl|external|src/syntac/wex|locale/po-sync.sh | |
# cpplint | |
C_CPPLINT_ARGUMENTS: --quiet --filter=-build,-readability/fn_size,-readability/multiline_string,-runtime/explicit,-runtime/indentation_namespace,-runtime/int,-runtime/references,-whitespace | |
C_CPPLINT_FILTER_REGEX_INCLUDE: (src|include|test) |