@bdsx/invsee
Version:
See the Inventory of the players
32 lines (31 loc) • 544 B
JSON
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"ignorePatterns": [
"**/*.js"
],
"plugins": [
"@typescript-eslint",
"import"
],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": [
{
"group": [
"**/bdsx/*",
"!/bdsx/*"
],
"message": "Please use the absolute path for bdsx libraries."
}
]
}
]
}
}