summaryrefslogtreecommitdiff
path: root/electron/.eslintrc.js
diff options
context:
space:
mode:
authorrejbasket <39080670+rejbasket@users.noreply.github.com>2023-05-22 22:33:19 +0200
committerGitHub <noreply@github.com>2023-05-22 22:33:19 +0200
commitef6f6580df6e8fbce913eecc1fe7e0f8caf1315b (patch)
treec1119a5d1affd44ad27e60cc6981ac98534c518d /electron/.eslintrc.js
parentda54f104e6bf5d0e98f7479cf1d060c76e0b01f2 (diff)
Update electron version to v14.2.9 (#2214)
Authored-by: rejbasket Co-authored-by: Kaalleen Co-authored-by: Lex Neva
Diffstat (limited to 'electron/.eslintrc.js')
-rw-r--r--electron/.eslintrc.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/electron/.eslintrc.js b/electron/.eslintrc.js
deleted file mode 100644
index 90cf05bb..00000000
--- a/electron/.eslintrc.js
+++ /dev/null
@@ -1,26 +0,0 @@
-module.exports = {
- root: true,
- parser: 'babel-eslint',
- parserOptions: {
- sourceType: 'module'
- },
- env: {
- browser: true,
- node: true
- },
- extends: 'standard',
- globals: {
- __static: true
- },
- plugins: [
- 'html'
- ],
- 'rules': {
- // allow paren-less arrow functions
- 'arrow-parens': 0,
- // allow async-await
- 'generator-star-spacing': 0,
- // allow debugger during development
- 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
- }
-}