You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
634 B
32 lines
634 B
{ |
|
"root": true, |
|
"env": { |
|
"browser": true, |
|
"node": true |
|
}, |
|
"extends": ["./jslib/shared/eslintrc.json"], |
|
"rules": { |
|
"import/order": [ |
|
"error", |
|
{ |
|
"alphabetize": { |
|
"order": "asc" |
|
}, |
|
"newlines-between": "always", |
|
"pathGroups": [ |
|
{ |
|
"pattern": "jslib-*/**", |
|
"group": "external", |
|
"position": "after" |
|
}, |
|
{ |
|
"pattern": "src/**/*", |
|
"group": "parent", |
|
"position": "before" |
|
} |
|
], |
|
"pathGroupsExcludedImportTypes": ["builtin"] |
|
} |
|
] |
|
} |
|
}
|
|
|