.eslintrc 383 B

12345678910111213141516
  1. {
  2. "extends": "airbnb/legacy",
  3. "rules": {
  4. "strict": [2, "global"],
  5. "comma-dangle": [2, "never"],
  6. "func-names": 0,
  7. "padded-blocks": 0,
  8. "no-use-before-define": [2, "nofunc"],
  9. "no-unused-vars": 1,
  10. "vars-on-top": 1,
  11. "id-length": [2, {"properties": "never", "exceptions": ["i", "j", "k", "l", "x", "y", "_"]}]
  12. },
  13. "globals": {
  14. "angular": 1
  15. }
  16. }