We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3860586 commit d376299Copy full SHA for d376299
.eslintrc.js
@@ -4,7 +4,7 @@ module.exports = {
4
commonjs: true,
5
es2021: true,
6
},
7
- extends: 'airbnb-base',
+ extends: '@antfu',
8
overrides: [
9
{
10
env: {
eslint.config.js
@@ -1,3 +1,9 @@
1
import antfu from '@antfu/eslint-config'
2
3
-export default antfu()
+export default antfu({
+ rules: {
+ 'node/prefer-global/process': 'off',
+ 'no-console': 'off',
+ 'no-irregular-whitespace': 'off',
+ },
+})
0 commit comments