Skip to content

Commit 4b598b2

Browse files
committed
chore: lint
1 parent 40c6a3b commit 4b598b2

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.eslintrc-off.json

-3
This file was deleted.

.madrun.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const envUpdate = {
2626
};
2727

2828
const eslintOffEnv = {
29-
ESLINT_CONFIG_FILE: './.eslintrc-off.json',
29+
ESLINT_CONFIG_FILE: './eslint-off.config.js',
3030
};
3131

3232
const putoutOffEnv = {

eslint-off.config.mjs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {defineConfig} from 'eslint/config';
2+
import defaultConfig from './eslint-conifg.js';
3+
4+
export default defineConfig([
5+
defaultConfig, {
6+
ignores: ['*.*', '!**/eslint-plugin-putout'],
7+
},
8+
]);

eslint.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ export default defineConfig([
2525
sourceType: 'module',
2626
ecmaVersion: 'latest',
2727
},
28-
}]);
28+
},
29+
]);

0 commit comments

Comments
 (0)