huncwot
Version:
A Programming Environment for TypeScript apps built on top of VS Code
50 lines (49 loc) • 742 B
JSON
{
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"no-console": "off",
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-unused-vars": [
"error",
{
"vars": "all",
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
}
}