Skip to content

Commit 16c7e50

Browse files
committed
fix: changed the config bundle to be js instead of ts, removed the extra export for matrixaiPlugin in index.ts
1 parent bd41999 commit 16c7e50

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/configs/matrixai-config-bundle.ts src/configs/matrixai-config-bundle.js

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import js from '@eslint/js';
88
import { FlatCompat } from '@eslint/eslintrc';
99
import _matrixLint from '../index.js';
1010

11+
console.log("running config");
12+
1113
// eslint-disable-next-line @typescript-eslint/naming-convention
1214
const __filename = fileURLToPath(import.meta.url);
1315
// eslint-disable-next-line @typescript-eslint/naming-convention
@@ -161,6 +163,7 @@ export default [
161163
leadingUnderscore: 'allow',
162164
trailingUnderscore: 'allowSingleOrDouble',
163165
},
166+
{ selector: 'import', format: ['camelCase', 'PascalCase'] },
164167
{
165168
selector: 'function',
166169
format: ['camelCase', 'PascalCase'],

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import noAliasedImportsRule from './rules/no-aliased-imports.js';
22
import { recommended } from './configs/recommended.js';
33

4-
export const matrixaiPlugin = {
4+
const matrixaiPlugin = {
55
meta: {
66
name: 'eslint-plugin-matrixai',
77
version: '0.0.1',

0 commit comments

Comments
 (0)