Skip to content

Commit e69ef0c

Browse files
committed
fix: import
1 parent 4c7c037 commit e69ef0c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
'use strict'
1+
'use strict';
22

3-
const sortProperties = require('./rules/sort-properties.js')
4-
const validateValues = require('./rules/validation-value.js')
3+
const sortProperties = require('./rules/sort-properties.js');
4+
const validateValues = require('./rules/validate-values.js');
55

66
const rules = {
77
'sort-properties': sortProperties,
88
'validate-values': validateValues,
9-
}
9+
};
1010

1111
const configs = {
1212
recommended: {
@@ -16,12 +16,12 @@ const configs = {
1616
'stylefix/validate-values': 'warn',
1717
},
1818
},
19-
}
19+
};
2020

2121
const flatConfigs = {
2222
recommended: {
2323
plugins: {
24-
['stylefix']: {
24+
stylefix: {
2525
rules,
2626
},
2727
},
@@ -30,10 +30,10 @@ const flatConfigs = {
3030
'stylefix/validate-values': 'warn',
3131
},
3232
},
33-
}
33+
};
3434

3535
module.exports = {
3636
rules,
3737
configs,
3838
flatConfigs,
39-
}
39+
};

0 commit comments

Comments
 (0)