c040e556ae
* chore: eslintrc fix * chore: update package json with new build scripts, correct build folder * feat: build ui scripts * chore: start fixing eslint * chore: fix interfaces name * feat: add copy dist source to build with cp (for now)
14 lines
311 B
Text
14 lines
311 B
Text
{
|
|
"extends": [
|
|
"xo-space",
|
|
"xo-typescript"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/indent": ["error", 2, { "SwitchCase": 1 }],
|
|
"@typescript-eslint/member-naming": 0,
|
|
"@typescript-eslint/interface-name-prefix": ["error", { "prefixWithI": "always" }]
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
}
|
|
}
|