1234567891011121314151617181920212223242526272829 |
- {
-
-
-
- "extends": [
- "plugin:mozilla/recommended",
- ],
- "parserOptions": {
- "sourceType": "script",
- },
- "plugins": [
- "mozilla"
- ],
- "rules": {
-
- "no-var": "off",
-
- "no-shadow": "error",
- "arrow-body-style": ["error", "as-needed"],
- "arrow-parens": ["error", "always"],
- "constructor-super": "error",
- "no-confusing-arrow": "error",
- "no-useless-constructor": "error",
- },
- }
|