aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-04-13 20:12:32 -0600
committerLibravatar GitHub <noreply@github.com>2024-04-13 20:12:32 -0600
commitd7b3e036a552b460bdbd65696438899344dfff60 (patch)
treef198fca5ff57b1bf83275877e1d7f288cfc5283e /.eslintrc.js
parent6.7.3-nightly.9 [skip ci] (diff)
downloadferdium-app-d7b3e036a552b460bdbd65696438899344dfff60.tar.gz
ferdium-app-d7b3e036a552b460bdbd65696438899344dfff60.tar.zst
ferdium-app-d7b3e036a552b460bdbd65696438899344dfff60.zip
chore: upgrade eslint-plugin-unicorn to v52 (#1681)
- upgrade `eslint-plugin-unicorn` from 51.0.1 to 52.0.0 - disable problematic rules that violate codebase pattern
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js12
1 files changed, 2 insertions, 10 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 50b511d0c..ed473c21b 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -134,17 +134,9 @@ module.exports = {
134 'unicorn/no-null': 0, 134 'unicorn/no-null': 0,
135 'unicorn/prefer-module': 0, 135 'unicorn/prefer-module': 0,
136 'unicorn/prevent-abbreviations': 0, 136 'unicorn/prevent-abbreviations': 0,
137 'unicorn/import-style': [ 137 'unicorn/import-style': 0,
138 2,
139 {
140 styles: {
141 path: {
142 named: true,
143 },
144 },
145 },
146 ],
147 'unicorn/consistent-destructuring': 0, 138 'unicorn/consistent-destructuring': 0,
139 'unicorn/no-anonymous-default-export': 0,
148 // eslint-plugin-sonar 140 // eslint-plugin-sonar
149 'sonar/function-name': 0, 141 'sonar/function-name': 0,
150 }, 142 },