2fas-browser-extension/.eslintrc.json
2023-03-21 08:20:34 +01:00

13 lines
307 B
JSON

{
"extends": ["standard"],
"parser": "@babel/eslint-parser",
"rules": {
"no-tabs": "off",
"semi": "off",
"indent": ["warn", 2, { "SwitchCase": 1 }],
"no-useless-escape": "off",
"no-trailing-spaces": ["error", { "skipBlankLines": true }],
"no-irregular-whitespace": "off"
}
}