This repository has been archived on 2022-09-16. You can view files and clone it, but cannot push or open issues/pull-requests.
tlaternet-templates/.eslintrc.json

41 lines
754 B
JSON
Raw Normal View History

2018-04-04 21:05:31 +01:00
{
2021-04-07 22:55:42 +01:00
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
2018-04-04 21:05:31 +01:00
"env": {
"es6": true,
"browser": true,
"jquery": true
},
2021-04-07 22:55:42 +01:00
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
2018-04-04 21:05:31 +01:00
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"warn",
"always"
],
"no-console": [
"off"
],
"no-unused-vars": [
2021-04-07 23:14:42 +01:00
"warn",
{ "argsIgnorePattern": "^_" }
2018-04-04 21:05:31 +01:00
]
}
}