Skip to content

Commit

Permalink
chore: Bump Eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Jan 7, 2025
1 parent 2997064 commit de3a50f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

13 changes: 13 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import appiumConfig from '@appium/eslint-config-appium-ts';

export default [
...appiumConfig,
{
ignores: [
'app/**',
'doc/**',
'gen/**',
'gradle/**',
],
},
];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"test": "./gradlew testServerDebugUnitTest"
},
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.0",
"@appium/eslint-config-appium-ts": "^1.0.0",
"@appium/support": "^6.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/gradle-version-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function gradleVersionUpdate() {
const gradleFile = path.resolve(__dirname, '..', 'app', 'build.gradle');
try {
await fs.promises.access(gradleFile, fs.constants.W_OK);
} catch (e) {
} catch {
throw new Error(`No '${gradleFile}' file found or it is not writeable`);
}

Expand Down

0 comments on commit de3a50f

Please sign in to comment.