Skip to content

Commit 2c2b1ea

Browse files
authored
Support flat config format (#32)
* Support flat config format Without the schema, you get an error like this: ``` Error: Key "rules": Key "no-relative-import-paths/no-relative-import-paths": Value [{"allowSameFolder":true}] should NOT have more than 0 items. ``` * Convert tabs to spaces
1 parent fb6aee5 commit 2c2b1ea

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

index.js

+16
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,22 @@ module.exports = {
3535
meta: {
3636
type: "layout",
3737
fixable: "code",
38+
schema: {
39+
type: "array",
40+
minItems: 0,
41+
maxItems: 1,
42+
items: [
43+
{
44+
type: "object",
45+
properties: {
46+
allowSameFolder: { type: "boolean" },
47+
rootDir: { type: "string" },
48+
prefix: { type: "string" },
49+
},
50+
additionalProperties: false,
51+
},
52+
],
53+
},
3854
},
3955
create: function (context) {
4056
const { allowSameFolder, rootDir, prefix } = {

0 commit comments

Comments
 (0)