new config file

This commit is contained in:
Jac-Zac
2022-12-28 19:45:20 +01:00
committed by AbdBarho
parent 2046b32b92
commit ac1660b699
+18
View File
@@ -0,0 +1,18 @@
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
rules: {
"sort-imports": [
"error",
{
ignoreCase: false,
ignoreDeclarationSort: false,
ignoreMemberSort: false,
memberSyntaxSortOrder: ["none", "all", "multiple", "single"],
allowSeparatedGroups: false
}
]
},
root: true,
};