Skip to content

Commit

Permalink
Fixed lint errors (#407)
Browse files Browse the repository at this point in the history
In preparation for upgrade to Ansible Lint 24.10.0.
  • Loading branch information
freemanjp authored Nov 16, 2024
1 parent eea7fe0 commit 13fcc5b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: saturday
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: saturday
6 changes: 4 additions & 2 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
intellij_python_major_version: "{{ ansible_facts.python.version.major }}"

# Name of the directory where user specific settings are stored
intellij_user_config_dir: ".{{ (intellij_version is regex('^20[2-9][0-9]\\.')) | ternary('config/JetBrains/' + intellij_user_dir, intellij_user_dir + '/config') }}"
intellij_user_config_dir: ".{{ (intellij_version is regex('^20[2-9][0-9]\\.')) \
| ternary('config/JetBrains/' + intellij_user_dir, intellij_user_dir + '/config') }}"

# Name of the directory where user specific plugins are stored
intellij_user_plugins_dir: ".{{ (intellij_version is regex('^20[2-9][0-9]\\.')) | ternary('local/share/JetBrains/' + intellij_user_dir, intellij_user_dir + '/config/plugins') }}"
intellij_user_plugins_dir: ".{{ (intellij_version is regex('^20[2-9][0-9]\\.')) \
| ternary('local/share/JetBrains/' + intellij_user_dir, intellij_user_dir + '/config/plugins') }}"

0 comments on commit 13fcc5b

Please sign in to comment.