Mind_Reader/.eslintrc.json
2021-09-25 16:18:41 -05:00

26 lines
555 B
JSON

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off",
"no-trailing-spaces": "error"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}