mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-13 20:36:41 +01:00
Because: * We want to introduce nx to the repository This commit: * Adds nx with working builds Closes: FXA-7341 Co-authored-by: dschom <dschomburg@mozilla.com>
18 lines
614 B
JSON
18 lines
614 B
JSON
{
|
|
"rules": {
|
|
"require-atomic-updates": "off",
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", {"vars": "all", "args": "none"}],
|
|
"no-redeclare": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "error",
|
|
"@typescript-eslint/no-redeclare": "error",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"@typescript-eslint/no-empty-function": "off"
|
|
},
|
|
"extends": ["plugin:@typescript-eslint/recommended", "prettier"],
|
|
"plugins": ["@typescript-eslint"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"root": true
|
|
}
|