File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ exclude_paths:
6
6
skip_list:
7
7
- yaml[line-length]
8
8
- galaxy[no-changelog]
9
-
9
+ - meta-runtime[unsupported-version]
10
10
use_default_rules: true
Original file line number Diff line number Diff line change 1
1
---
2
2
# list of parameters to add to the kernel cmdline
3
- kernel_cmdline : []
3
+ kernel_cmdline : [] # noqa var-naming[no-role-prefix]
4
4
# list of regexs to match against kernel paramerters. Any matches will be
5
5
# removed.
6
- kernel_cmdline_remove : []
7
- kernel_restart_handler : reboot
6
+ kernel_cmdline_remove : [] # noqa var-naming[no-role-prefix]
7
+ kernel_restart_handler : reboot # noqa var-naming[no-role-prefix]
8
8
9
9
# optionally skip backing up the config file. Can cause issues on some
10
10
# filesystems due to filenames containing illegal characters
11
- backup_grub_config_file : true
11
+ backup_grub_config_file : true # noqa var-naming[no-role-prefix]
Original file line number Diff line number Diff line change 1
1
---
2
2
# Should match on all of the the cmd line parameters
3
- kernel_cmdline_regex : " {{ '(' ~ kernel_cmdline | map('regex_escape') | list | join('|') ~ ')' }}"
3
+ kernel_cmdline_regex : " {{ '(' ~ kernel_cmdline | map('regex_escape') | list | join('|') ~ ')' }}" # noqa var-naming[no-role-prefix]
4
4
5
- kernel_cmdline_sorted : " {{ kernel_cmdline | sort }}"
5
+ kernel_cmdline_sorted : " {{ kernel_cmdline | sort }}" # noqa var-naming[no-role-prefix]
6
6
7
7
# Should match on all of the the cmd line parameters that we want to remove
8
- kernel_cmdline_remove_regex : " {{ '(' ~ kernel_cmdline_remove | join('|') ~ ')' }}"
8
+ kernel_cmdline_remove_regex : " {{ '(' ~ kernel_cmdline_remove | join('|') ~ ')' }}" # noqa var-naming[no-role-prefix]
You can’t perform that action at this time.
0 commit comments