Skip to content

Commit 0870a08

Browse files
committed
[#133]: Update README
1 parent 4b24ceb commit 0870a08

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232
use-mypy: true
3333
use-isort: false
3434
extra-mypy-options: "--ignore-missing-imports --show-error-codes"
35-
extra-flake8-options: "--max-line-length=120 --ignore=E203,E402"
36-
extra-pycodestyle-options: "--max-line-length=120 --ignore=E203,E402"
35+
extra-flake8-options: "--max-line-length=120 --ignore=E203,E402,W503"
36+
extra-pycodestyle-options: "--max-line-length=120 --ignore=E203,E402,W503"

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ jobs:
146146
| `use_cmake` | Determines wether CMake should be used to generate compile_commands.json file | `true` |
147147
| `cmake_args` | Additional CMake arguments |`<empty>`|
148148
| `force_console_print` | Output the action result to console, instead of creating the comment |`false`|
149+
| `compile_commands` | User generated compile_commands.json |`<empty>`|
150+
| `compile_commands_replace_prefix` | Whether we should replace the prefix of files inside user generated compile_commands.json file |`false`|
149151

150152
**NOTE: `apt_pckgs` will run before `init_script`, just in case you need some packages installed before running the script**
151153

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ inputs:
2525
apt_pckgs:
2626
description: 'Additional (space separated) packages that need to be installed in order for project to compile'
2727
compile_commands:
28-
description: 'user generated compile_commands.json'
28+
description: 'User generated compile_commands.json'
2929
compile_commands_replace_prefix:
3030
description: 'Whether we should replace the prefix of files inside user generated compile_commands.json file'
3131
default: false

0 commit comments

Comments
 (0)