mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
* refactor Operational packages * fix: refactor operations package to use oclif * adjusting Dockerfile * adjusting github action * Update all-tools.yml Signed-off-by: Andrei A. <andrei.alexandru@consensys.net> * adjusting github action --------- Signed-off-by: Andrei A. <andrei.alexandru@consensys.net> Co-authored-by: VGau <victorien.gauch@consensys.net>
17 lines
266 B
JavaScript
17 lines
266 B
JavaScript
module.exports = {
|
|
env: {
|
|
commonjs: true,
|
|
mocha: false,
|
|
es2021: false,
|
|
jest: true,
|
|
},
|
|
extends: ["../.eslintrc.js"],
|
|
plugins: ["prettier"],
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
},
|
|
rules: {
|
|
"prettier/prettier": "error",
|
|
},
|
|
};
|