Files
bandmaster-public/.eslintrc.json
2022-07-20 19:37:36 +01:00

29 lines
459 B
JSON

{
"globals": {},
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@matt-fidd"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"max-len": "off",
"sort-imports": [
"error",
{
"allowSeparatedGroups": true
}
]
}
}