summaryrefslogtreecommitdiff
path: root/sw-ui/.eslintrc
blob: e100aaa5c91d6328f7a5015b50b72b6842d44695 (plain)
1
2
3
4
5
6
7
8
9
{
  "extends": "react-app",
  "rules": {
    "max-len": ["error", 120],
    "semi": ["error", "always"],
    "quotes": ["error", "single"],
    "comma-dangle": ["error", "always-multiline"]
  }
}
bgstack15