Skip to content

Commit

Permalink
update dependencies, linting .etc
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmlxn committed Jun 4, 2024
1 parent 90d8aef commit d39cafb
Show file tree
Hide file tree
Showing 6 changed files with 189 additions and 209 deletions.
8 changes: 4 additions & 4 deletions electron/.eslintrc.json → .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"plugins": ["prettier", "no-unused-imports"],
"ignorePatterns": [".next/"],
"plugins": ["prettier", "unused-imports"],
"rules": {
"prettier/prettier": [
"error",
Expand All @@ -12,7 +11,7 @@
}
],
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"no-unused-imports/no-unused-imports": "error"
"unused-imports/no-unused-imports": "error"
},
"parserOptions": {
"ecmaVersion": "latest",
Expand All @@ -21,5 +20,6 @@
"env": {
"node": true,
"es6": true
}
},
"ignorePatterns": ["**/*.js", "!electron/**/*.js"]
}
1 change: 0 additions & 1 deletion electron/constants/publishOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const publishOptions = {
token: process.env.GH_TOKEN,
private: false,
publishAutoUpdate: true,

};

module.exports = { publishOptions };
Loading

0 comments on commit d39cafb

Please sign in to comment.