We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce11a5 commit c885fe6Copy full SHA for c885fe6
.gitignore
@@ -6,5 +6,4 @@ types
6
.DS_Store
7
.eslintcache
8
*.log*
9
-*.conf*
10
*.env*
eslint.config.mjs
@@ -0,0 +1,12 @@
1
+
2
+import unjs from 'eslint-config-unjs'
3
4
+// https://github.com/unjs/eslint-config
5
+export default unjs({
+ ignores: [],
+ rules: {
+ "unicorn/no-null": "off",
+ "unicorn/prefer-at": "off",
+ "unicorn/prevent-abbreviations": "off"
11
+ },
12
+});
0 commit comments