Files
firefox-accounts-mirror/packages/fxa-react/.eslintrc.json
Julian Poyourow 565ebb89c9 chore(build): initial nx implementation
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>
2023-05-23 08:37:47 -07:00

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
}