vsc-material-theme/.eslintrc
Alessio Occhipinti c040e556ae Feat/generator 2 iteration (#398)
* 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)
2019-12-23 17:34:01 +01:00

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
}
}