mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-01-08 22:28:08 -05:00
* chore: define separate version.ts script * chore: include publishing to soldeer in script * fix(contracts): push to soldeer re 800 * ci: fetch latest contract version from soldeer * refactor: do not use execa in scripts * fix: do not exit process in script * chore: remove comments * refactor: use shebang in ts scripts * chore(contracts): add soldeerignore * chore: inherit stdio in scripts * chore: remove dry run flag * chore: uncomment * chore: fix typo in comment
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"es6": true
|
|
},
|
|
"extends": ["airbnb", "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": {
|
|
"react/require-default-props": "off",
|
|
"react/jsx-props-no-spreading": "off",
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }],
|
|
"import/prefer-default-export": "off",
|
|
"import/extensions": "off",
|
|
"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"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["./scripts/*"],
|
|
"rules": {
|
|
"no-console": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|