1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-08-15 18:20:30 +03:00
edamagit/.eslintrc.json

31 lines
731 B
JSON
Raw Permalink Normal View History

2020-03-15 20:22:04 +03:00
{
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"eqeqeq": "error",
"quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"curly": "warn",
"no-empty": "off",
2020-03-27 19:11:37 +03:00
"no-unused-vars": "off",
2020-11-22 20:00:38 +03:00
"semi": "warn",
"prefer-const": "off"
2020-03-15 20:22:04 +03:00
}
}