mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-08 23:17:58 -05:00
25 lines
815 B
JSON
25 lines
815 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"es6": true
|
|
},
|
|
"extends": ["airbnb-base", "airbnb-typescript/base", "plugin:jest/recommended", "plugin:jest/style", "prettier"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"project": ["./tsconfig.json", "./packages/**/tsconfig.json"]
|
|
},
|
|
"plugins": ["@typescript-eslint", "jest"],
|
|
"rules": {
|
|
"no-underscore-dangle": "off",
|
|
"import/no-extraneous-dependencies": "off",
|
|
"no-bitwise": "off",
|
|
"no-await-in-loop": "off",
|
|
"no-restricted-syntax": "off",
|
|
"no-console": ["warn", { "allow": ["info", "warn", "error"] }],
|
|
"@typescript-eslint/lines-between-class-members": "off",
|
|
"no-param-reassign": "off"
|
|
}
|
|
}
|