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>
25 lines
435 B
JSON
25 lines
435 B
JSON
{
|
|
"extends": ["plugin:fxa/recommended"],
|
|
"plugins": ["fxa"],
|
|
"parserOptions": {
|
|
"ecmaVersion": "2020",
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"jest": true
|
|
},
|
|
"rules": {
|
|
"require-atomic-updates": "off",
|
|
"space-unary-ops": "off",
|
|
"no-useless-escape": "off"
|
|
},
|
|
"ignorePatterns": [
|
|
"dist",
|
|
"node_modules",
|
|
"pm2.config.js",
|
|
"storybook-static"
|
|
],
|
|
"root": true
|
|
}
|