Skip to content

Commit

Permalink
fix: apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
WoLewicki committed Jan 7, 2025
1 parent 91f943a commit d42580f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
name: build-example-android
runs-on: ubuntu-latest # using linux runner for speed
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Checkout
uses: actions/checkout@v3
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Install modules
Expand Down
10 changes: 8 additions & 2 deletions example/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
module.exports = {
arrowParens: 'avoid',
arrowParens: 'always',
bracketSameLine: true,
bracketSpacing: false,
tabs: false,
tabWidth: 2,
bracketSpacing: true,
singleQuote: true,
trailingComma: 'all',
printWidth: 120,
semi: true,
jsxBracketSameLine: false,
jsxSingleQuote: false,
};

0 comments on commit d42580f

Please sign in to comment.