Skip to content

Commit c364515

Browse files
committed
Update eslint config to 9.x
1 parent 2309795 commit c364515

File tree

6 files changed

+1144
-273
lines changed

6 files changed

+1144
-273
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 272 deletions
This file was deleted.

eslint.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
'use strict';
2+
3+
const init = require('eslint-config-metarhia');
4+
5+
module.exports = [
6+
...init,
7+
{
8+
rules: {
9+
'class-methods-use-this': 'off',
10+
'no-self-compare': 'off',
11+
'no-extra-parens': 'off',
12+
'no-invalid-this': 'off',
13+
},
14+
},
15+
];

0 commit comments

Comments
 (0)