nork/.eslintrc.json

26 lines
475 B
JSON
Raw Permalink Normal View History

2021-12-01 18:05:44 +01:00
{
2022-07-30 22:44:24 +02:00
"env": {
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["error", "tab"],
"linebreak-style": ["error", "unix"],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"semi": ["error", "never"]
}
2021-12-01 18:05:44 +01:00
}