Skip to content

Commit e6a6af5

Browse files
committed
Update eslint configs to 9.x plain
1 parent 7b6891b commit e6a6af5

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

eslint.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const init = require('eslint-config-metarhia');
4+
5+
module.exports = init;

prettier.config.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
'use strict';
2+
3+
module.exports = {
4+
printWidth: 80,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
tabWidth: 2,
8+
useTabs: false,
9+
semi: true,
10+
};

0 commit comments

Comments
 (0)